]>
Commit | Line | Data |
---|---|---|
7453a54e SL |
1 | pub type fsblkcnt_t = ::uint64_t; |
2 | pub type fsfilcnt_t = ::uint64_t; | |
3 | ||
92a42be0 SL |
4 | pub const PTHREAD_STACK_MIN: ::size_t = 2048; |
5 | pub const KERN_PROC_PATHNAME: ::c_int = 12; | |
9cc50fc6 | 6 | pub const SIGSTKSZ: ::size_t = 34816; |
7453a54e SL |
7 | pub const SF_NODISKIO: ::c_int = 0x00000001; |
8 | pub const SF_MNOWAIT: ::c_int = 0x00000002; | |
9 | pub const SF_SYNC: ::c_int = 0x00000004; | |
92a42be0 SL |
10 | |
11 | extern { | |
12 | pub fn __error() -> *mut ::c_int; | |
13 | } |