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
1
2
3
4
5
6
7
8
9
10
11
12
//! This module corresponds to `mach/i386/boolean.h`.

#![allow(unused_imports)]

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

#[cfg(target_arch = "x86_64")]
pub type boolean_t = c_uint;

#[cfg(not(target_arch = "x86_64"))]
pub type boolean_t = c_int;