diff options
author | Perberos <[email protected]> | 2011-11-14 18:24:48 -0300 |
---|---|---|
committer | Perberos <[email protected]> | 2011-11-14 18:24:48 -0300 |
commit | 312ba610a1e98fc656fb58178227d7d45a64494e (patch) | |
tree | 54a3c2b6084c80e63fb0526c6e7b8e01627acbd7 /multiload/linux-proc.h | |
download | mate-applets-312ba610a1e98fc656fb58178227d7d45a64494e.tar.bz2 mate-applets-312ba610a1e98fc656fb58178227d7d45a64494e.tar.xz |
initial
Diffstat (limited to 'multiload/linux-proc.h')
-rw-r--r-- | multiload/linux-proc.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/multiload/linux-proc.h b/multiload/linux-proc.h new file mode 100644 index 00000000..fdcb1359 --- /dev/null +++ b/multiload/linux-proc.h @@ -0,0 +1,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 |