diff options
| author | Daniel Mueller <deso@posteo.net> | 2019-01-29 17:57:50 -0800 | 
|---|---|---|
| committer | Daniel Mueller <deso@posteo.net> | 2019-01-29 17:57:50 -0800 | 
| commit | 73d48b35269bf297d66b2333040b296f26b403a1 (patch) | |
| tree | 952fda784782d55183fb57d80a32a61255f1c572 /libc/src/unix/bsd/netbsdlike | |
| parent | 750c5dfef0e4d06a342d7f6fd5fb1b98e87043e0 (diff) | |
| download | nitrocli-73d48b35269bf297d66b2333040b296f26b403a1.tar.gz nitrocli-73d48b35269bf297d66b2333040b296f26b403a1.tar.bz2 | |
Update libc crate to 0.2.48
This change updates the libc crate to version 0.2.48.
Import subrepo libc/:libc at 42cd3ba27254c423e03f6f4324de57075047f6a0
Diffstat (limited to 'libc/src/unix/bsd/netbsdlike')
| -rw-r--r-- | libc/src/unix/bsd/netbsdlike/mod.rs | 41 | ||||
| -rw-r--r-- | libc/src/unix/bsd/netbsdlike/netbsd/aarch64.rs | 6 | ||||
| -rw-r--r-- | libc/src/unix/bsd/netbsdlike/netbsd/arm.rs | 6 | ||||
| -rw-r--r-- | libc/src/unix/bsd/netbsdlike/netbsd/mod.rs | 14 | ||||
| -rw-r--r-- | libc/src/unix/bsd/netbsdlike/netbsd/powerpc.rs | 6 | ||||
| -rw-r--r-- | libc/src/unix/bsd/netbsdlike/netbsd/sparc64.rs | 4 | ||||
| -rw-r--r-- | libc/src/unix/bsd/netbsdlike/netbsd/x86.rs | 6 | ||||
| -rw-r--r-- | libc/src/unix/bsd/netbsdlike/netbsd/x86_64.rs | 6 | ||||
| -rw-r--r-- | libc/src/unix/bsd/netbsdlike/openbsdlike/openbsd/aarch64.rs | 6 | ||||
| -rw-r--r-- | libc/src/unix/bsd/netbsdlike/openbsdlike/openbsd/x86.rs | 6 | ||||
| -rw-r--r-- | libc/src/unix/bsd/netbsdlike/openbsdlike/openbsd/x86_64.rs | 6 | 
11 files changed, 99 insertions, 8 deletions
| diff --git a/libc/src/unix/bsd/netbsdlike/mod.rs b/libc/src/unix/bsd/netbsdlike/mod.rs index 15f84d9..291c081 100644 --- a/libc/src/unix/bsd/netbsdlike/mod.rs +++ b/libc/src/unix/bsd/netbsdlike/mod.rs @@ -1,3 +1,5 @@ +use dox::mem; +  pub type time_t = i64;  pub type mode_t = u32;  pub type nlink_t = ::uint32_t; @@ -593,7 +595,43 @@ pub const SF_APPEND:        ::c_ulong = 0x00040000;  pub const TIMER_ABSTIME: ::c_int = 1; +fn _ALIGN(p: usize) -> usize { +    (p + _ALIGNBYTES) & !_ALIGNBYTES +} +  f! { +    pub fn CMSG_DATA(cmsg: *const ::cmsghdr) -> *mut ::c_uchar { +        (cmsg as *mut ::c_uchar) +            .offset(_ALIGN(mem::size_of::<::cmsghdr>()) as isize) +    } + +    pub fn CMSG_LEN(length: ::c_uint) -> ::c_uint { +        _ALIGN(mem::size_of::<::cmsghdr>()) as ::c_uint + length +    } + +    pub fn CMSG_NXTHDR(mhdr: *const ::msghdr, cmsg: *const ::cmsghdr) +        -> *mut ::cmsghdr +    { +        if cmsg.is_null() { +            return ::CMSG_FIRSTHDR(mhdr); +        }; +        let next = cmsg as usize + _ALIGN((*cmsg).cmsg_len as usize) +            + _ALIGN(mem::size_of::<::cmsghdr>()); +        let max = (*mhdr).msg_control as usize +            + (*mhdr).msg_controllen as usize; +        if next > max { +            0 as *mut ::cmsghdr +        } else { +            (cmsg as usize + _ALIGN((*cmsg).cmsg_len as usize)) +                as *mut ::cmsghdr +        } +    } + +    pub fn CMSG_SPACE(length: ::c_uint) -> ::c_uint { +        (_ALIGN(mem::size_of::<::cmsghdr>()) + _ALIGN(length as usize)) +            as ::c_uint +    } +      pub fn WSTOPSIG(status: ::c_int) -> ::c_int {          status >> 8      } @@ -671,9 +709,6 @@ extern {                          groups: *mut ::gid_t,                          ngroups: *mut ::c_int) -> ::c_int;      pub fn initgroups(name: *const ::c_char, basegid: ::gid_t) -> ::c_int; -    pub fn fexecve(fd: ::c_int, argv: *const *const ::c_char, -                   envp: *const *const ::c_char) -                   -> ::c_int;      pub fn getdomainname(name: *mut ::c_char, len: ::size_t) -> ::c_int;      pub fn setdomainname(name: *const ::c_char, len: ::size_t) -> ::c_int;      pub fn uname(buf: *mut ::utsname) -> ::c_int; diff --git a/libc/src/unix/bsd/netbsdlike/netbsd/aarch64.rs b/libc/src/unix/bsd/netbsdlike/netbsd/aarch64.rs index 66f3301..cda75bc 100644 --- a/libc/src/unix/bsd/netbsdlike/netbsd/aarch64.rs +++ b/libc/src/unix/bsd/netbsdlike/netbsd/aarch64.rs @@ -1,3 +1,5 @@ +use dox::mem; +  use PT_FIRSTMACH;  pub type c_long = i64; @@ -5,6 +7,10 @@ pub type c_ulong = u64;  pub type c_char = u8;  pub type __cpu_simple_lock_nv_t = ::c_uchar; +// should be pub(crate), but that requires Rust 1.18.0 +#[doc(hidden)] +pub const _ALIGNBYTES: usize = mem::size_of::<::c_int>() - 1; +  pub const PT_GETREGS: ::c_int = PT_FIRSTMACH + 0;  pub const PT_SETREGS: ::c_int = PT_FIRSTMACH + 1;  pub const PT_GETFPREGS: ::c_int = PT_FIRSTMACH + 2; diff --git a/libc/src/unix/bsd/netbsdlike/netbsd/arm.rs b/libc/src/unix/bsd/netbsdlike/netbsd/arm.rs index 9e67316..71c2cb7 100644 --- a/libc/src/unix/bsd/netbsdlike/netbsd/arm.rs +++ b/libc/src/unix/bsd/netbsdlike/netbsd/arm.rs @@ -1,3 +1,5 @@ +use dox::mem; +  use PT_FIRSTMACH;  pub type c_long = i32; @@ -5,6 +7,10 @@ pub type c_ulong = u32;  pub type c_char = u8;  pub type __cpu_simple_lock_nv_t = ::c_int; +// should be pub(crate), but that requires Rust 1.18.0 +#[doc(hidden)] +pub const _ALIGNBYTES: usize = mem::size_of::<::c_longlong>() - 1; +  pub const PT_GETREGS: ::c_int = PT_FIRSTMACH + 1;  pub const PT_SETREGS: ::c_int = PT_FIRSTMACH + 2;  pub const PT_GETFPREGS: ::c_int = PT_FIRSTMACH + 3; diff --git a/libc/src/unix/bsd/netbsdlike/netbsd/mod.rs b/libc/src/unix/bsd/netbsdlike/netbsd/mod.rs index 760582c..d3acfb9 100644 --- a/libc/src/unix/bsd/netbsdlike/netbsd/mod.rs +++ b/libc/src/unix/bsd/netbsdlike/netbsd/mod.rs @@ -526,15 +526,16 @@ pub const AF_BLUETOOTH: ::c_int = 31;  pub const AF_IEEE80211: ::c_int = 32;  pub const AF_MPLS: ::c_int = 33;  pub const AF_ROUTE: ::c_int = 34; -pub const AF_MAX: ::c_int = 35; +pub const AF_MAX: ::c_int = 36;  pub const NET_MAXID: ::c_int = AF_MAX;  pub const NET_RT_DUMP: ::c_int = 1;  pub const NET_RT_FLAGS: ::c_int = 2; -pub const NET_RT_OOIFLIST: ::c_int = 3; -pub const NET_RT_OIFLIST: ::c_int = 4; -pub const NET_RT_IFLIST: ::c_int = 5; -pub const NET_RT_MAXID: ::c_int = 6; +pub const NET_RT_OOOIFLIST: ::c_int = 3; +pub const NET_RT_OOIFLIST: ::c_int = 4; +pub const NET_RT_OIFLIST: ::c_int = 5; +pub const NET_RT_IFLIST: ::c_int = 6; +pub const NET_RT_MAXID: ::c_int = 7;  pub const PF_OROUTE: ::c_int = AF_OROUTE;  pub const PF_ARP: ::c_int = AF_ARP; @@ -1039,6 +1040,7 @@ f! {      }  } +#[link(name = "rt")]  extern {      pub fn aio_read(aiocbp: *mut aiocb) -> ::c_int;      pub fn aio_write(aiocbp: *mut aiocb) -> ::c_int; @@ -1051,7 +1053,9 @@ extern {      pub fn aio_cancel(fd: ::c_int, aiocbp: *mut aiocb) -> ::c_int;      pub fn lio_listio(mode: ::c_int, aiocb_list: *const *mut aiocb,                        nitems: ::c_int, sevp: *mut sigevent) -> ::c_int; +} +extern {      pub fn chflags(path: *const ::c_char, flags: ::c_ulong) -> ::c_int;      pub fn fchflags(fd: ::c_int, flags: ::c_ulong) -> ::c_int;      pub fn lchflags(path: *const ::c_char, flags: ::c_ulong) -> ::c_int; diff --git a/libc/src/unix/bsd/netbsdlike/netbsd/powerpc.rs b/libc/src/unix/bsd/netbsdlike/netbsd/powerpc.rs index 54d069e..3c682c3 100644 --- a/libc/src/unix/bsd/netbsdlike/netbsd/powerpc.rs +++ b/libc/src/unix/bsd/netbsdlike/netbsd/powerpc.rs @@ -1,3 +1,5 @@ +use dox::mem; +  use PT_FIRSTMACH;  pub type c_long = i32; @@ -5,6 +7,10 @@ pub type c_ulong = u32;  pub type c_char = u8;  pub type __cpu_simple_lock_nv_t = ::c_int; +// should be pub(crate), but that requires Rust 1.18.0 +#[doc(hidden)] +pub const _ALIGNBYTES: usize = mem::size_of::<::c_double>() - 1; +  pub const PT_STEP: ::c_int = PT_FIRSTMACH + 0;  pub const PT_GETREGS: ::c_int = PT_FIRSTMACH + 1;  pub const PT_SETREGS: ::c_int = PT_FIRSTMACH + 2; diff --git a/libc/src/unix/bsd/netbsdlike/netbsd/sparc64.rs b/libc/src/unix/bsd/netbsdlike/netbsd/sparc64.rs index db8f2a9..6a86759 100644 --- a/libc/src/unix/bsd/netbsdlike/netbsd/sparc64.rs +++ b/libc/src/unix/bsd/netbsdlike/netbsd/sparc64.rs @@ -2,3 +2,7 @@ pub type c_long = i64;  pub type c_ulong = u64;  pub type c_char = i8;  pub type __cpu_simple_lock_nv_t = ::c_uchar; + +// should be pub(crate), but that requires Rust 1.18.0 +#[doc(hidden)] +pub const _ALIGNBYTES: usize = 0xf; diff --git a/libc/src/unix/bsd/netbsdlike/netbsd/x86.rs b/libc/src/unix/bsd/netbsdlike/netbsd/x86.rs index 8bd1058..4da9968 100644 --- a/libc/src/unix/bsd/netbsdlike/netbsd/x86.rs +++ b/libc/src/unix/bsd/netbsdlike/netbsd/x86.rs @@ -1,4 +1,10 @@ +use dox::mem; +  pub type c_long = i32;  pub type c_ulong = u32;  pub type c_char = i8;  pub type __cpu_simple_lock_nv_t = ::c_uchar; + +// should be pub(crate), but that requires Rust 1.18.0 +#[doc(hidden)] +pub const _ALIGNBYTES: usize = mem::size_of::<::c_int>() - 1; diff --git a/libc/src/unix/bsd/netbsdlike/netbsd/x86_64.rs b/libc/src/unix/bsd/netbsdlike/netbsd/x86_64.rs index 8d3de84..af1b8f8 100644 --- a/libc/src/unix/bsd/netbsdlike/netbsd/x86_64.rs +++ b/libc/src/unix/bsd/netbsdlike/netbsd/x86_64.rs @@ -1,3 +1,5 @@ +use dox::mem; +  use PT_FIRSTMACH;  pub type c_long = i64; @@ -5,6 +7,10 @@ pub type c_ulong = u64;  pub type c_char = i8;  pub type __cpu_simple_lock_nv_t = ::c_uchar; +// should be pub(crate), but that requires Rust 1.18.0 +#[doc(hidden)] +pub const _ALIGNBYTES: usize = mem::size_of::<::c_long>() - 1; +  pub const PT_STEP: ::c_int = PT_FIRSTMACH + 0;  pub const PT_GETREGS: ::c_int = PT_FIRSTMACH + 1;  pub const PT_SETREGS: ::c_int = PT_FIRSTMACH + 2; diff --git a/libc/src/unix/bsd/netbsdlike/openbsdlike/openbsd/aarch64.rs b/libc/src/unix/bsd/netbsdlike/openbsdlike/openbsd/aarch64.rs index 6aa9950..2a28c2a 100644 --- a/libc/src/unix/bsd/netbsdlike/openbsdlike/openbsd/aarch64.rs +++ b/libc/src/unix/bsd/netbsdlike/openbsdlike/openbsd/aarch64.rs @@ -1,3 +1,9 @@ +use dox::mem; +  pub type c_long = i64;  pub type c_ulong = u64;  pub type c_char = u8; + +// should be pub(crate), but that requires Rust 1.18.0 +#[doc(hidden)] +pub const _ALIGNBYTES: usize = mem::size_of::<::c_long>() - 1; diff --git a/libc/src/unix/bsd/netbsdlike/openbsdlike/openbsd/x86.rs b/libc/src/unix/bsd/netbsdlike/openbsdlike/openbsd/x86.rs index a00e333..b63b69f 100644 --- a/libc/src/unix/bsd/netbsdlike/openbsdlike/openbsd/x86.rs +++ b/libc/src/unix/bsd/netbsdlike/openbsdlike/openbsd/x86.rs @@ -1,3 +1,9 @@ +use dox::mem; +  pub type c_long = i32;  pub type c_ulong = u32;  pub type c_char = i8; + +// should be pub(crate), but that requires Rust 1.18.0 +#[doc(hidden)] +pub const _ALIGNBYTES: usize = mem::size_of::<::c_int>() - 1; diff --git a/libc/src/unix/bsd/netbsdlike/openbsdlike/openbsd/x86_64.rs b/libc/src/unix/bsd/netbsdlike/openbsdlike/openbsd/x86_64.rs index 3bc7f52..581096f 100644 --- a/libc/src/unix/bsd/netbsdlike/openbsdlike/openbsd/x86_64.rs +++ b/libc/src/unix/bsd/netbsdlike/openbsdlike/openbsd/x86_64.rs @@ -1,9 +1,15 @@ +use dox::mem; +  use PT_FIRSTMACH;  pub type c_long = i64;  pub type c_ulong = u64;  pub type c_char = i8; +// should be pub(crate), but that requires Rust 1.18.0 +#[doc(hidden)] +pub const _ALIGNBYTES: usize = mem::size_of::<::c_long>() - 1; +  pub const PT_STEP: ::c_int = PT_FIRSTMACH + 0;  pub const PT_GETREGS: ::c_int = PT_FIRSTMACH + 1;  pub const PT_SETREGS: ::c_int = PT_FIRSTMACH + 2; | 
