mach-sys 0.5.4

forked from original mach, and merge from mach2/machx. A Rust interface to the user-space API of the Mach 3.0 kernel that underlies OSX.
Documentation
//! This module corresponds to `mach/vm_attributes.h`.

use crate::ffi::{c_uint, c_int};

pub type vm_machine_attribute_t     = c_uint;
pub type vm_machine_attribute_val_t = c_int;

pub const MATTR_CACHE:     vm_machine_attribute_t = 1;
pub const MATTR_MIGRATE:   vm_machine_attribute_t = 1 << 1;
pub const MATTR_REPLICATE: vm_machine_attribute_t = 1 << 2;

pub const MATTR_VAL_OFF:          vm_machine_attribute_val_t = 0;
pub const MATTR_VAL_ON:           vm_machine_attribute_val_t = 1;
pub const MATTR_VAL_GET:          vm_machine_attribute_val_t = 2;
pub const MATTR_VAL_CACHE_FLUSH:  vm_machine_attribute_val_t = 6;
pub const MATTR_VAL_DCACHE_FLUSH: vm_machine_attribute_val_t = 7;
pub const MATTR_VAL_ICACHE_FLUSH: vm_machine_attribute_val_t = 8;
pub const MATTR_VAL_CACHE_SYNC:   vm_machine_attribute_val_t = 9;
pub const MATTR_VAL_GET_INFO:     vm_machine_attribute_val_t = 10;