Fix SIGSTKSZ for FreeBSD

This commit is contained in:
Ole Krüger 2015-11-16 23:22:41 +01:00
parent 761f04a0d1
commit 8e35e26801

View File

@ -1,5 +1,6 @@
pub const PTHREAD_STACK_MIN: ::size_t = 2048;
pub const KERN_PROC_PATHNAME: ::c_int = 12;
pub const SIGSTKSZ: ::size_t = 2048 /* MINSIGSTKSZ */ + 32768;
extern {
pub fn __error() -> *mut ::c_int;