mirror of
https://github.com/fluencelabs/musl
synced 2025-04-25 23:32:15 +00:00
this broke the busybox "free" utility (memory reporting) and possibly other things like uptime.
37 lines
684 B
C
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
|