Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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;
}
share|improve this question
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:12
With ML and 8 GB RAM, the missing part is bigger (around 2400). – patrix Feb 9 at 16:27
And have a look at opensource.apple.com/source/top/top-73/libtop.c, there seems to be some special calculation going on in there. – patrix Feb 9 at 16:37
@nneonneo Oh, I know. I got here by trying to figure out why vm_stat was giving me bad data. – Chas. Owens Feb 9 at 16:55
@patrix How many CPUs do you have? My working theory at the moment is that it is related to CPUs claiming RAM (the info comes from something called processor_list that 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
show 2 more comments

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.