Skip to content

Commit 76587b1

Browse files
committed
Merge pull request #60 from mneumann/dragonfly_sigstksz2
Fix SIGSTKSZ for DragonFly
2 parents 83ac25a + dab9b8b commit 76587b1

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/unix/bsd/freebsdlike/dragonfly.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
pub const PTHREAD_STACK_MIN: ::size_t = 1024;
22
pub const KERN_PROC_PATHNAME: ::c_int = 9;
3+
pub const SIGSTKSZ: ::size_t = 8192 /* MINSIGSTKSZ */ + 32768;
34

45
extern {
56
pub fn __dfly_error() -> *const ::c_int;

0 commit comments

Comments
 (0)