]> git.proxmox.com Git - rustc.git/blame - src/liblibc/src/unix/bsd/freebsdlike/freebsd.rs
Imported Upstream version 1.8.0+dfsg1
[rustc.git] / src / liblibc / src / unix / bsd / freebsdlike / freebsd.rs
CommitLineData
7453a54e
SL
1pub type fsblkcnt_t = ::uint64_t;
2pub type fsfilcnt_t = ::uint64_t;
3
92a42be0
SL
4pub const PTHREAD_STACK_MIN: ::size_t = 2048;
5pub const KERN_PROC_PATHNAME: ::c_int = 12;
9cc50fc6 6pub const SIGSTKSZ: ::size_t = 34816;
7453a54e
SL
7pub const SF_NODISKIO: ::c_int = 0x00000001;
8pub const SF_MNOWAIT: ::c_int = 0x00000002;
9pub const SF_SYNC: ::c_int = 0x00000004;
92a42be0
SL
10
11extern {
12 pub fn __error() -> *mut ::c_int;
13}