musl/include/sys/sysinfo.h
Rich Felker e86b18a63e sysinfo struct was utter nonsense; no idea where it came from.
this broke the busybox "free" utility (memory reporting) and possibly
other things like uptime.
2012-06-07 22:58:19 -04:00

37 lines
684 B
C

#ifndef _SYS_SYSINFO_H
#define _SYS_SYSINFO_H
#ifdef __cplusplus
extern "C" {
#endif
#define SI_LOAD_SHIFT 16
struct sysinfo {
unsigned long uptime;
unsigned long loads[3];
unsigned long long totalram;
unsigned long long freeram;
unsigned long long sharedram;
unsigned long long bufferram;
unsigned long long totalswap;
unsigned long long freeswap;
unsigned short procs, pad;
unsigned long long totalhigh;
unsigned long long freehigh;
unsigned mem_unit;
char __reserved[256];
};
int sysinfo (struct sysinfo *);
int get_nprocs_conf (void);
int get_nprocs (void);
long long get_phys_pages (void);
long long get_avphys_pages (void);
#ifdef __cplusplus
}
#endif
#endif