Fix freebsd-likes stage2 build

This commit is contained in:
Ole Krüger 2015-11-27 23:23:09 +01:00
parent 867c6ff0b8
commit 6d6567c8de
2 changed files with 2 additions and 2 deletions

View file

@ -1,6 +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;
pub const SIGSTKSZ: ::size_t = 40960;
extern {
pub fn __dfly_error() -> *const ::c_int;

View file

@ -1,6 +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;
pub const SIGSTKSZ: ::size_t = 34816;
extern {
pub fn __error() -> *mut ::c_int;