Skip to content

Commit

Permalink
Fix freebsd-likes stage2 build
Browse files Browse the repository at this point in the history
  • Loading branch information
lenaschoenburg committed Nov 27, 2015
1 parent 867c6ff commit 6d6567c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/unix/bsd/freebsdlike/dragonfly.rs
Original file line number Diff line number Diff line change
@@ -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;
Expand Down
2 changes: 1 addition & 1 deletion src/unix/bsd/freebsdlike/freebsd.rs
Original file line number Diff line number Diff line change
@@ -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;
Expand Down

0 comments on commit 6d6567c

Please sign in to comment.