summaryrefslogtreecommitdiff
path: root/src/unix/notbsd/android/b32.rs
blob: ae9b6241c5b6c99fb54c14352be9b6917e99d0ad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
pub type mode_t = u16;

s! {
    pub struct sigaction {
        pub sa_sigaction: ::sighandler_t,
        pub sa_mask: ::sigset_t,
        pub sa_flags: ::c_ulong,
        pub sa_restorer: ::dox::Option<extern fn()>,
    }
}

pub const SYS_gettid: ::c_int = 224;