Merge pull request #64 from dignati/freebsd-sigstksz

Fix SIGSTKSZ for FreeBSD
This commit is contained in:
Alex Crichton 2015-11-16 17:01:18 -08:00
commit 904ffb20e9

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;