mach 0.0.2

A rust interface to the Mach 3.0 kernel that underlies OSX.
1
2
3
4
5
6
7
//! This module roughly corresponds to `mach/i386/vm_types.h`.

use libc::types::os::arch::c95;

pub type natural_t = c95::c_uint;

pub type user_addr_t = usize;