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 867c6ff commit 6d6567cCopy full SHA for 6d6567c
src/unix/bsd/freebsdlike/dragonfly.rs
@@ -1,6 +1,6 @@
1
pub const PTHREAD_STACK_MIN: ::size_t = 1024;
2
pub const KERN_PROC_PATHNAME: ::c_int = 9;
3
-pub const SIGSTKSZ: ::size_t = 8192 /* MINSIGSTKSZ */ + 32768;
+pub const SIGSTKSZ: ::size_t = 40960;
4
5
extern {
6
pub fn __dfly_error() -> *const ::c_int;
src/unix/bsd/freebsdlike/freebsd.rs
pub const PTHREAD_STACK_MIN: ::size_t = 2048;
pub const KERN_PROC_PATHNAME: ::c_int = 12;
-pub const SIGSTKSZ: ::size_t = 2048 /* MINSIGSTKSZ */ + 32768;
+pub const SIGSTKSZ: ::size_t = 34816;
pub fn __error() -> *mut ::c_int;
0 commit comments