procps/proc/sysinfo.h

19 lines
322 B
C
Raw Normal View History

2002-12-09 12:30:07 +05:30
#ifndef PROC_SYSINFO_H
#define PROC_SYSINFO_H
2003-05-31 06:08:55 +05:30
#include <sys/types.h>
#include <dirent.h>
2002-11-25 15:46:33 +05:30
#ifdef __cplusplus
extern "C" {
#endif
2002-12-09 12:30:07 +05:30
long procps_cpu_count(void);
long procps_hertz_get(void);
int procps_loadavg(double *av1, double *av5, double *av15);
unsigned int procps_pid_length(void);
2002-02-02 04:17:29 +05:30
#ifdef __cplusplus
}
#endif
#endif