mach2 0.6.0

A Rust interface to the user-space API of the Mach 3.0 kernel that underlies OSX.
Documentation
1
2
3
4
5
6
7
//! This module corresponds to `mach/thread_special_ports.h`.
use core::ffi::c_int;

pub const THREAD_KERNEL_PORT: c_int = 1;
pub const THREAD_INSPECT_PORT: c_int = 2;
pub const THREAD_READ_PORT: c_int = 3;
pub const THREAD_MAX_SPECIAL_PORT: c_int = THREAD_READ_PORT;