Why does host_statistics64() in OS X 10.6.8 (I don't know if other versions have this problem) return counts for free, active, inactive, and wired memory that don't add up to the total amount of ram? And why is it missing an inconsistent number of pages?
The following output represents the number of pages not classified as free, active, inactive, or wired over ten seconds (sampled roughly once per second).
458
243
153
199
357
140
304
93
181
224
The code that produces the numbers above is:
#include <stdio.h>
#include <mach/mach.h>
#include <sys/types.h>
#include <sys/sysctl.h>
#include <unistd.h>
int main(int argc, char** argv) {
struct vm_statistics64 stats;
mach_port_t host = mach_host_self();
natural_t count = HOST_VM_INFO64_COUNT;
natural_t missing = 0;
kern_return_t ret;
int mib[2];
long ram;
natural_t pages;
size_t length;
int i;
mib[0] = CTL_HW;
mib[1] = HW_MEMSIZE;
length = sizeof(long);
sysctl(mib, 2, &ram, &length, NULL, 0);
pages = ram / getpagesize();
for (i = 0; i < 10 i++) {
if ((ret = host_statistics64(host, HOST_VM_INFO64, (host_info64_
t)&stats, &count)) != KERN_SUCCESS) {
printf("oops\n");
}
missing = pages - (stats.free_count + stats.active_count + stats
.inactive_count + stats.wire_count);
printf("%i\n", missing);
sleep(1);
}
return 0;
}
vm_stat, which uses the same code, has the same not-quite-adding-up issue. So, it's not a problem in your code per se. – nneonneo Feb 9 at 16:12vm_statwas giving me bad data. – Chas. Owens Feb 9 at 16:55processor_listthat I haven't tracked down yet). If the number of missing pages scales with the number of CPUs, then that will be more proof. Also, what is your pagesize (I assume 4k)? – Chas. Owens Feb 9 at 17:08