mach 0.3.0

A Rust interface to the user-space API of the Mach 3.0 kernel that underlies OSX.
//! 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;