//! This module roughly corresponds to `mach/memory_object_types.h`. use vm_types::natural_t; pub type memory_object_offset_t = ::libc::c_ulonglong; pub type memory_object_size_t = ::libc::c_ulonglong; pub type memory_object_cluster_size_t = natural_t; pub type memory_object_fault_info_t = *mut natural_t; pub type vm_object_id_t = ::libc::c_ulonglong;