File tree 3 files changed +9
-0
lines changed 3 files changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -120,6 +120,9 @@ pub const SA_NOCLDSTOP: ::c_int = 0x0008;
120
120
pub const SA_NODEFER : :: c_int = 0x0010 ;
121
121
pub const SA_NOCLDWAIT : :: c_int = 0x0020 ;
122
122
123
+ pub const SS_ONSTACK : :: c_int = 1 ;
124
+ pub const SS_DISABLE : :: c_int = 4 ;
125
+
123
126
pub const SIGCHLD : :: c_int = 20 ;
124
127
pub const SIGBUS : :: c_int = 10 ;
125
128
pub const SIGUSR1 : :: c_int = 30 ;
Original file line number Diff line number Diff line change @@ -385,6 +385,9 @@ pub const SA_RESETHAND: ::c_int = 0x80000000;
385
385
pub const SA_RESTART : :: c_int = 0x10000000 ;
386
386
pub const SA_NOCLDSTOP : :: c_int = 0x00000001 ;
387
387
388
+ pub const SS_ONSTACK : :: c_int = 1 ;
389
+ pub const SS_DISABLE : :: c_int = 2 ;
390
+
388
391
pub const PATH_MAX : :: c_int = 4096 ;
389
392
390
393
pub const FD_SETSIZE : usize = 1024 ;
Original file line number Diff line number Diff line change @@ -281,6 +281,9 @@ pub const SA_NODEFER: ::c_int = 0x00000010;
281
281
pub const SA_NOCLDWAIT : :: c_int = 0x00010000 ;
282
282
pub const SA_NOCLDSTOP : :: c_int = 0x00020000 ;
283
283
284
+ pub const SS_ONSTACK : :: c_int = 1 ;
285
+ pub const SS_DISABLE : :: c_int = 2 ;
286
+
284
287
pub const FIONBIO : :: c_int = 0x8004667e ;
285
288
286
289
pub const SIGCHLD : :: c_int = 18 ;
You can’t perform that action at this time.
0 commit comments