We're trying to find out how much physical memory is installed in a machine running Mac OS X. We've found the BSD function sysctl(). The problem is this function wants to return a 32 bit value but some Macs are able to address up to 32 GB which will not fit in a 32 bit value. (Actually even 4 GB won't fit in a 32 bit value.) Is there another API available on OS X (10.4 or later) that will give us this info?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
The answer is to use sysctl to get hw.memsize as was suggested in a previous answer. Here's the actual code for doing that.
|
|||
|
|
|
Did you try googling? This seems to be the answer: http://lists.apple.com/archives/scitech/2005/Aug/msg00004.html sysctl() does work, you just need to fetch hw.memsize instead of hw.physmem. hw.memsize will give you a uint64_t, so no 32 bit problem. |
|||
|
|
|
Alternatively you can add the data from vm_statistics_data_t to get the total memory
|
||||
|
|