Skip to content

Commit

Permalink
Merge pull request rust-lang#60 from mneumann/dragonfly_sigstksz2
Browse files Browse the repository at this point in the history
Fix SIGSTKSZ for DragonFly
  • Loading branch information
alexcrichton committed Nov 13, 2015
2 parents 83ac25a + dab9b8b commit 76587b1
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/unix/bsd/freebsdlike/dragonfly.rs
Original file line number Diff line number Diff line change
@@ -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;
Expand Down

0 comments on commit 76587b1

Please sign in to comment.