Fix SIGSTKSZ for DragonFly

This commit is contained in:
Michael Neumann 2015-11-13 11:38:43 +01:00
parent 83ac25aa21
commit dab9b8bf44

View File

@ -1,5 +1,6 @@
pub const PTHREAD_STACK_MIN: ::size_t = 1024;
pub const KERN_PROC_PATHNAME: ::c_int = 9;
pub const SIGSTKSZ: ::size_t = 8192 /* MINSIGSTKSZ */ + 32768;
extern {
pub fn __dfly_error() -> *const ::c_int;