From 1429ce9ba2425b8abeefc311d56db5efe801d9d2 Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Thu, 7 Jun 2012 23:06:04 -0400 Subject: fix sysinfo, try 2. it seems to work this time. --- include/sys/sysinfo.h | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'include') diff --git a/include/sys/sysinfo.h b/include/sys/sysinfo.h index af11b6a0..6a3931e5 100644 --- a/include/sys/sysinfo.h +++ b/include/sys/sysinfo.h @@ -10,15 +10,15 @@ extern "C" { 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 long totalram; + unsigned long freeram; + unsigned long sharedram; + unsigned long bufferram; + unsigned long totalswap; + unsigned long freeswap; unsigned short procs, pad; - unsigned long long totalhigh; - unsigned long long freehigh; + unsigned long totalhigh; + unsigned long freehigh; unsigned mem_unit; char __reserved[256]; }; @@ -26,8 +26,8 @@ struct sysinfo { 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); +long get_phys_pages (void); +long get_avphys_pages (void); #ifdef __cplusplus } -- cgit v1.2.1