File tree 3 files changed +2
-5
lines changed
src/unix/linux_like/linux
3 files changed +2
-5
lines changed Original file line number Diff line number Diff line change @@ -1342,6 +1342,7 @@ pub const SHM_LOCK: ::c_int = 11;
1342
1342
pub const SHM_UNLOCK : :: c_int = 12 ;
1343
1343
1344
1344
pub const SHM_HUGETLB : :: c_int = 0o4000 ;
1345
+ #[ cfg( not( all( target_env = "uclibc" , target_arch = "mips" ) ) ) ]
1345
1346
pub const SHM_NORESERVE : :: c_int = 0o10000 ;
1346
1347
1347
1348
pub const EPOLLRDHUP : :: c_int = 0x2000 ;
@@ -1587,6 +1588,7 @@ pub const IPV6_RTHDR_LOOSE: ::c_int = 0;
1587
1588
pub const IPV6_RTHDR_STRICT : :: c_int = 1 ;
1588
1589
1589
1590
pub const IUTF8 : :: tcflag_t = 0x00004000 ;
1591
+ #[ cfg( not( all( target_env = "uclibc" , target_arch = "mips" ) ) ) ]
1590
1592
pub const CMSPAR : :: tcflag_t = 0o10000000000 ;
1591
1593
1592
1594
pub const MFD_CLOEXEC : :: c_uint = 0x0001 ;
Original file line number Diff line number Diff line change @@ -638,7 +638,6 @@ extern "C" {
638
638
newlen : :: size_t ,
639
639
) -> :: c_int ;
640
640
pub fn ioctl ( fd : :: c_int , request : :: c_ulong , ...) -> :: c_int ;
641
- pub fn backtrace ( buf : * mut * mut :: c_void , sz : :: c_int ) -> :: c_int ;
642
641
pub fn glob64 (
643
642
pattern : * const :: c_char ,
644
643
flags : :: c_int ,
Original file line number Diff line number Diff line change @@ -309,13 +309,9 @@ pub const TIOCMSET: ::c_ulong = 0x741a;
309
309
pub const FIONREAD : :: c_ulong = 0x467f ;
310
310
pub const TIOCCONS : :: c_ulong = 0x80047478 ;
311
311
312
- pub const RTLD_DEEPBIND : :: c_int = 0x10 ;
313
312
pub const RTLD_GLOBAL : :: c_int = 0x4 ;
314
313
pub const RTLD_NOLOAD : :: c_int = 0x8 ;
315
314
316
-
317
-
318
-
319
315
pub const SIGSTKSZ : :: size_t = 8192 ;
320
316
pub const CBAUD : :: tcflag_t = 0o0010017 ;
321
317
pub const TAB1 : :: tcflag_t = 0x00000800 ;
You can’t perform that action at this time.
0 commit comments