mach 0.0.2

A rust interface to the Mach 3.0 kernel that underlies OSX.
1
2
3
4
5
6
7
8
9
10
11
12
//! This module corresponds to `mach/mach_types.h`

use port::{mach_port_t};

pub type task_t = mach_port_t;

#[repr(C)]
struct thread;

pub type thread_t = *mut thread;
pub type thread_act_t = mach_port_t;
pub type thread_act_array_t = *mut thread_act_t;