1 /* Calculate the size of physical memory.
3 Copyright (C) 2000-2001, 2003, 2005-2006, 2009-2020 Free Software
6 This program is free software: you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program. If not, see <https://www.gnu.org/licenses/>. */
19 /* Written by Paul Eggert. */
28 # include <sys/pstat.h>
32 # include <sys/sysmp.h>
35 #if HAVE_SYS_SYSINFO_H
36 # include <sys/sysinfo.h>
39 #if HAVE_MACHINE_HAL_SYSINFO_H
40 # include <machine/hal_sysinfo.h>
44 # include <sys/table.h>
47 #include <sys/types.h>
50 # include <sys/param.h>
53 #if HAVE_SYS_SYSCTL_H && ! defined __GLIBC__
54 # include <sys/sysctl.h>
57 #if HAVE_SYS_SYSTEMCFG_H
58 # include <sys/systemcfg.h>
63 # define WIN32_LEAN_AND_MEAN
66 /* Don't assume that UNICODE is not defined. */
67 # undef GetModuleHandle
68 # define GetModuleHandle GetModuleHandleA
70 /* Avoid warnings from gcc -Wcast-function-type. */
71 # define GetProcAddress \
72 (void *) GetProcAddress
74 /* MEMORYSTATUSEX is missing from older windows headers, so define
75 a local replacement. */
80 DWORDLONG ullTotalPhys
;
81 DWORDLONG ullAvailPhys
;
82 DWORDLONG ullTotalPageFile
;
83 DWORDLONG ullAvailPageFile
;
84 DWORDLONG ullTotalVirtual
;
85 DWORDLONG ullAvailVirtual
;
86 DWORDLONG ullAvailExtendedVirtual
;
88 typedef BOOL (WINAPI
*PFN_MS_EX
) (lMEMORYSTATUSEX
*);
92 #define ARRAY_SIZE(a) (sizeof (a) / sizeof ((a)[0]))
94 /* Return the total amount of physical memory. */
98 #if defined _SC_PHYS_PAGES && defined _SC_PAGESIZE
99 { /* This works on linux-gnu, solaris2 and cygwin. */
100 double pages
= sysconf (_SC_PHYS_PAGES
);
101 double pagesize
= sysconf (_SC_PAGESIZE
);
102 if (0 <= pages
&& 0 <= pagesize
)
103 return pages
* pagesize
;
107 #if HAVE_SYSINFO && HAVE_STRUCT_SYSINFO_MEM_UNIT
108 { /* This works on linux. */
110 if (sysinfo(&si
) == 0)
111 return (double) si
.totalram
* si
.mem_unit
;
115 #if HAVE_PSTAT_GETSTATIC
116 { /* This works on hpux11. */
117 struct pst_static pss
;
118 if (0 <= pstat_getstatic (&pss
, sizeof pss
, 1, 0))
120 double pages
= pss
.physical_memory
;
121 double pagesize
= pss
.page_size
;
122 if (0 <= pages
&& 0 <= pagesize
)
123 return pages
* pagesize
;
128 #if HAVE_SYSMP && defined MP_SAGET && defined MPSA_RMINFO && defined _SC_PAGESIZE
129 { /* This works on irix6. */
130 struct rminfo realmem
;
131 if (sysmp (MP_SAGET
, MPSA_RMINFO
, &realmem
, sizeof realmem
) == 0)
133 double pagesize
= sysconf (_SC_PAGESIZE
);
134 double pages
= realmem
.physmem
;
135 if (0 <= pages
&& 0 <= pagesize
)
136 return pages
* pagesize
;
141 #if HAVE_GETSYSINFO && defined GSI_PHYSMEM
142 { /* This works on Tru64 UNIX V4/5. */
145 if (getsysinfo (GSI_PHYSMEM
, (caddr_t
) &physmem
, sizeof (physmem
),
146 NULL
, NULL
, NULL
) == 1)
148 double kbytes
= physmem
;
151 return kbytes
* 1024.0;
156 #if HAVE_SYSCTL && ! defined __GLIBC__ && defined HW_PHYSMEM
157 { /* This works on *bsd and darwin. */
158 unsigned int physmem
;
159 size_t len
= sizeof physmem
;
160 static int mib
[2] = { CTL_HW
, HW_PHYSMEM
};
162 if (sysctl (mib
, ARRAY_SIZE (mib
), &physmem
, &len
, NULL
, 0) == 0
163 && len
== sizeof (physmem
))
164 return (double) physmem
;
168 #if HAVE__SYSTEM_CONFIGURATION
169 /* This works on AIX. */
170 return _system_configuration
.physmem
;
174 { /* this works on windows */
176 HMODULE h
= GetModuleHandle ("kernel32.dll");
181 /* Use GlobalMemoryStatusEx if available. */
182 if ((pfnex
= (PFN_MS_EX
) GetProcAddress (h
, "GlobalMemoryStatusEx")))
184 lMEMORYSTATUSEX lms_ex
;
185 lms_ex
.dwLength
= sizeof lms_ex
;
186 if (!pfnex (&lms_ex
))
188 return (double) lms_ex
.ullTotalPhys
;
191 /* Fall back to GlobalMemoryStatus which is always available.
192 but returns wrong results for physical memory > 4GB. */
196 GlobalMemoryStatus (&ms
);
197 return (double) ms
.dwTotalPhys
;
202 /* Guess 64 MB. It's probably an older host, so guess small. */
203 return 64 * 1024 * 1024;
206 /* Return the amount of physical memory available. */
208 physmem_available (void)
210 #if defined _SC_AVPHYS_PAGES && defined _SC_PAGESIZE
211 { /* This works on linux-gnu, solaris2 and cygwin. */
212 double pages
= sysconf (_SC_AVPHYS_PAGES
);
213 double pagesize
= sysconf (_SC_PAGESIZE
);
214 if (0 <= pages
&& 0 <= pagesize
)
215 return pages
* pagesize
;
219 #if HAVE_SYSINFO && HAVE_STRUCT_SYSINFO_MEM_UNIT
220 { /* This works on linux. */
222 if (sysinfo(&si
) == 0)
223 return ((double) si
.freeram
+ si
.bufferram
) * si
.mem_unit
;
227 #if HAVE_PSTAT_GETSTATIC && HAVE_PSTAT_GETDYNAMIC
228 { /* This works on hpux11. */
229 struct pst_static pss
;
230 struct pst_dynamic psd
;
231 if (0 <= pstat_getstatic (&pss
, sizeof pss
, 1, 0)
232 && 0 <= pstat_getdynamic (&psd
, sizeof psd
, 1, 0))
234 double pages
= psd
.psd_free
;
235 double pagesize
= pss
.page_size
;
236 if (0 <= pages
&& 0 <= pagesize
)
237 return pages
* pagesize
;
242 #if HAVE_SYSMP && defined MP_SAGET && defined MPSA_RMINFO && defined _SC_PAGESIZE
243 { /* This works on irix6. */
244 struct rminfo realmem
;
245 if (sysmp (MP_SAGET
, MPSA_RMINFO
, &realmem
, sizeof realmem
) == 0)
247 double pagesize
= sysconf (_SC_PAGESIZE
);
248 double pages
= realmem
.availrmem
;
249 if (0 <= pages
&& 0 <= pagesize
)
250 return pages
* pagesize
;
255 #if HAVE_TABLE && defined TBL_VMSTATS
256 { /* This works on Tru64 UNIX V4/5. */
257 struct tbl_vmstats vmstats
;
259 if (table (TBL_VMSTATS
, 0, &vmstats
, 1, sizeof (vmstats
)) == 1)
261 double pages
= vmstats
.free_count
;
262 double pagesize
= vmstats
.pagesize
;
264 if (0 <= pages
&& 0 <= pagesize
)
265 return pages
* pagesize
;
270 #if HAVE_SYSCTL && ! defined __GLIBC__ && defined HW_USERMEM
271 { /* This works on *bsd and darwin. */
272 unsigned int usermem
;
273 size_t len
= sizeof usermem
;
274 static int mib
[2] = { CTL_HW
, HW_USERMEM
};
276 if (sysctl (mib
, ARRAY_SIZE (mib
), &usermem
, &len
, NULL
, 0) == 0
277 && len
== sizeof (usermem
))
278 return (double) usermem
;
283 { /* this works on windows */
285 HMODULE h
= GetModuleHandle ("kernel32.dll");
290 /* Use GlobalMemoryStatusEx if available. */
291 if ((pfnex
= (PFN_MS_EX
) GetProcAddress (h
, "GlobalMemoryStatusEx")))
293 lMEMORYSTATUSEX lms_ex
;
294 lms_ex
.dwLength
= sizeof lms_ex
;
295 if (!pfnex (&lms_ex
))
297 return (double) lms_ex
.ullAvailPhys
;
300 /* Fall back to GlobalMemoryStatus which is always available.
301 but returns wrong results for physical memory > 4GB */
305 GlobalMemoryStatus (&ms
);
306 return (double) ms
.dwAvailPhys
;
311 /* Guess 25% of physical memory. */
312 return physmem_total () / 4;
324 printf ("%12.f %12.f\n", physmem_total (), physmem_available ());
332 compile-command: "gcc -DDEBUG -g -O -Wall -W physmem.c"