2017-09-17 15:45:03 +00:00
|
|
|
/* See LICENSE file for copyright and license details. */
|
2018-03-28 16:26:56 +00:00
|
|
|
#include <stdio.h>
|
2017-09-17 14:18:17 +00:00
|
|
|
#include <stdlib.h>
|
|
|
|
|
2017-09-24 13:33:01 +00:00
|
|
|
#include "../util.h"
|
2017-09-17 14:18:17 +00:00
|
|
|
|
|
|
|
const char *
|
|
|
|
load_avg(const char *fmt)
|
|
|
|
{
|
|
|
|
double avgs[3];
|
|
|
|
|
|
|
|
if (getloadavg(avgs, 3) < 0) {
|
2018-05-18 08:59:05 +00:00
|
|
|
warn("getloadavg: Failed to obtain load average");
|
2017-09-17 14:18:17 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return bprintf(fmt, avgs[0], avgs[1], avgs[2]);
|
|
|
|
}
|