summaryrefslogtreecommitdiffstats
path: root/third_party/rust/mach2/src/memory_object_types.rs
blob: 8399e71676a21f1a5a1b1e4a90632eb48fbd1f5a (plain)
1
2
3
4
5
6
7
8
9
//! 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;