We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 6b07546 + 18d8131 commit 81c333fCopy full SHA for 81c333f
src/unix/haiku/mod.rs
@@ -1051,6 +1051,7 @@ pub const LOCK_EX: ::c_int = 0x02;
1051
pub const LOCK_NB: ::c_int = 0x04;
1052
pub const LOCK_UN: ::c_int = 0x08;
1053
1054
+pub const MINSIGSTKSZ: ::size_t = 8192;
1055
pub const SIGSTKSZ: ::size_t = 16384;
1056
1057
pub const IOV_MAX: ::c_int = 1024;
@@ -1067,6 +1068,9 @@ pub const SA_NOMASK: ::c_int = SA_NODEFER;
1067
1068
pub const SA_STACK: ::c_int = SA_ONSTACK;
1069
pub const SA_ONESHOT: ::c_int = SA_RESETHAND;
1070
1071
+pub const SS_ONSTACK: ::c_int = 0x1;
1072
+pub const SS_DISABLE: ::c_int = 0x2;
1073
+
1074
pub const FD_SETSIZE: usize = 1024;
1075
1076
pub const RTLD_LOCAL: ::c_int = 0x0;
0 commit comments