]> git.proxmox.com Git - rustc.git/blob - src/liblibc/src/unix/notbsd/linux/musl/b64/x86_64.rs
New upstream version 1.13.0+dfsg1
[rustc.git] / src / liblibc / src / unix / notbsd / linux / musl / b64 / x86_64.rs
1 pub type c_char = i8;
2
3 s! {
4 pub struct mcontext_t {
5 __private: [u64; 32],
6 }
7
8 pub struct ucontext_t {
9 pub uc_flags: ::c_ulong,
10 pub uc_link: *mut ucontext_t,
11 pub uc_stack: ::stack_t,
12 pub uc_mcontext: mcontext_t,
13 pub uc_sigmask: ::sigset_t,
14 __private: [u8; 512],
15 }
16 }
17
18 pub const SYS_gettid: ::c_long = 186;
19
20 pub const SYS_perf_event_open: ::c_long = 298;