1 use PT_FIRSTMACH;
2 
3 pub type c_long = i64;
4 pub type c_ulong = u64;
5 pub type c_char = u8;
6 pub type __cpu_simple_lock_nv_t = ::c_uchar;
7 
8 // should be pub(crate), but that requires Rust 1.18.0
9 cfg_if! {
10     if #[cfg(libc_const_size_of)] {
11         #[doc(hidden)]
12         pub const _ALIGNBYTES: usize = ::mem::size_of::<::c_int>() - 1;
13     } else {
14         #[doc(hidden)]
15         pub const _ALIGNBYTES: usize = 4 - 1;
16     }
17 }
18 
19 pub const PT_GETREGS: ::c_int = PT_FIRSTMACH + 0;
20 pub const PT_SETREGS: ::c_int = PT_FIRSTMACH + 1;
21 pub const PT_GETFPREGS: ::c_int = PT_FIRSTMACH + 2;
22 pub const PT_SETFPREGS: ::c_int = PT_FIRSTMACH + 3;
23