Go to the first, previous, next, last section, table of contents.
vm_statistics
function and provides virtual memory statistics for the system. It has
the following members:
long pagesize
long free_count
long active_count
long inactive_count
long wire_count
long zero_fill_count
long reactivations
long pageins
long pageouts
long faults
long cow_faults
long lookups
long hits
vm_statistics
returns the statistics about the
kernel's use of virtual memory since the kernel was booted.
pagesize
can also be found as a global variable
vm_page_size
which is set at task initialization and remains
constant for the life of the task.
Go to the first, previous, next, last section, table of contents.