1 use PT_FIRSTMACH; 2 3 pub type c_long = i32; 4 pub type c_ulong = u32; 5 pub type c_char = i8; 6 pub type __cpu_simple_lock_nv_t = ::c_int; 7 8 cfg_if! { 9 if #[cfg(libc_const_size_of)] { 10 #[doc(hidden)] 11 pub const _ALIGNBYTES: usize = ::mem::size_of::<::c_longlong>() - 1; 12 } else { 13 #[doc(hidden)] 14 pub const _ALIGNBYTES: usize = 8 - 1; 15 } 16 } 17 18 pub const PT_GETREGS: ::c_int = PT_FIRSTMACH + 1; 19 pub const PT_SETREGS: ::c_int = PT_FIRSTMACH + 2; 20 pub const PT_GETFPREGS: ::c_int = PT_FIRSTMACH + 3; 21 pub const PT_SETFPREGS: ::c_int = PT_FIRSTMACH + 4; 22