summaryrefslogtreecommitdiff
path: root/archive/breathing-exo-daemon/v4-clean-shm/loadtest.c
blob: 8cb3162407e569397ee07ee3fce0f23d9ee5809f (plain)
1
2
3
4
5
6
7
8
9
10
#include <stdio.h>
#include <stdlib.h>
#define _GNU_SOURCE
int main() {
    double l[3];
    if (getloadavg(l, 3) != -1)
        printf("load: %.2f %.2f %.2f\n", l[0], l[1], l[2]);
    return 0;
}