We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2c18025 commit 3c8a493Copy full SHA for 3c8a493
src/unix/uclibc/x86_64/mod.rs
@@ -272,8 +272,6 @@ pub const O_NONBLOCK: ::c_int = 04000;
272
pub const O_TRUNC: ::c_int = 01000;
273
pub const NCCS: usize = 32;
274
pub const SIG_SETMASK: ::c_int = 2; // Set the set of blocked signals
275
-#[cfg(not(target_os = "l4re"))]
276
-pub const PTHREAD_STACK_MIN: usize = 16384;
277
pub const __SIZEOF_PTHREAD_MUTEX_T: usize = 40;
278
pub const __SIZEOF_PTHREAD_MUTEXATTR_T: usize = 4;
279
pub const SO_BROADCAST: ::c_int = 6;
src/unix/uclibc/x86_64/other.rs
@@ -2,3 +2,4 @@
2
// separate module
3
pub type pthread_t = ::c_ulong;
4
5
+pub const PTHREAD_STACK_MIN: usize = 16384;
0 commit comments