File: linux-proc.h

package info (click to toggle)
mate-applets 1.16.0-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 25,244 kB
  • ctags: 2,192
  • sloc: ansic: 23,447; xml: 1,716; python: 1,483; makefile: 1,434; sh: 20
file content (16 lines) | stat: -rw-r--r-- 613 bytes parent folder | download | duplicates (9)
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