DD2-monitor/funcs.c

41 lines
686 B
C
Raw Normal View History

2018-12-05 16:00:11 +01:00
/*
* funcs.c
*/
#include <stdio.h>
2018-12-13 19:39:06 +01:00
#include <unistd.h>
2018-12-05 16:00:11 +01:00
#include <stdlib.h>
#include <string.h>
2018-12-13 19:39:06 +01:00
#include <time.h>
2018-12-05 17:58:55 +01:00
#include <sys/time.h>
2018-12-05 16:00:11 +01:00
#include "funcs.h"
2018-12-05 16:04:09 +01:00
extern int verbosity;
2018-12-05 17:58:55 +01:00
/* --------------------------------------------------------------- */
2018-12-08 13:02:24 +01:00
int get_loadavg(double *where)
{
FILE *fp;
2018-12-08 13:02:24 +01:00
double loads[3];
int foo;
if ( ! (fp=fopen("/proc/loadavg", "r")) ) {
perror("read loadavg");
2018-12-08 13:02:24 +01:00
return -1;
}
2018-12-08 13:02:24 +01:00
foo = fscanf(fp, "%lf %lf %lf", loads, loads+1, loads+2);
if (3 != foo) fprintf(stderr, "%s : read %d vals\n", __func__, foo);
memcpy(where, loads, 3 * sizeof(double));
fclose(fp);
2018-12-08 13:02:24 +01:00
return 0;
}
/* --------------------------------------------------------------- */