summaryrefslogtreecommitdiff
path: root/multiload/linux-proc.h
blob: fdcb135987afcb5d1dc58549b3656c9d976c4e36 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef LINUX_PROC_H__
#define LINUX_PROC_H__

#include <load-graph.h>

G_GNUC_INTERNAL void GetLoad (int Maximum, int data [5], LoadGraph *g);
G_GNUC_INTERNAL void GetDiskLoad (int Maximum, int data [3], LoadGraph *g);
#if 0
G_GNUC_INTERNAL void GetPage (int Maximum, int data [3], LoadGraph *g);
#endif /* 0 */
G_GNUC_INTERNAL void GetMemory (int Maximum, int data [4], LoadGraph *g);
G_GNUC_INTERNAL void GetSwap (int Maximum, int data [2], LoadGraph *g);
G_GNUC_INTERNAL void GetLoadAvg (int Maximum, int data [2], LoadGraph *g);
G_GNUC_INTERNAL void GetNet (int Maximum, int data [4], LoadGraph *g);

#endif