File tree Expand file tree Collapse file tree 3 files changed +9
-0
lines changed Expand file tree Collapse file tree 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;
120120pub const SA_NODEFER : :: c_int = 0x0010 ;
121121pub const SA_NOCLDWAIT : :: c_int = 0x0020 ;
122122
123+ pub const SS_ONSTACK : :: c_int = 1 ;
124+ pub const SS_DISABLE : :: c_int = 4 ;
125+
123126pub const SIGCHLD : :: c_int = 20 ;
124127pub const SIGBUS : :: c_int = 10 ;
125128pub 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;
385385pub const SA_RESTART : :: c_int = 0x10000000 ;
386386pub const SA_NOCLDSTOP : :: c_int = 0x00000001 ;
387387
388+ pub const SS_ONSTACK : :: c_int = 1 ;
389+ pub const SS_DISABLE : :: c_int = 2 ;
390+
388391pub const PATH_MAX : :: c_int = 4096 ;
389392
390393pub 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;
281281pub const SA_NOCLDWAIT : :: c_int = 0x00010000 ;
282282pub const SA_NOCLDSTOP : :: c_int = 0x00020000 ;
283283
284+ pub const SS_ONSTACK : :: c_int = 1 ;
285+ pub const SS_DISABLE : :: c_int = 2 ;
286+
284287pub const FIONBIO : :: c_int = 0x8004667e ;
285288
286289pub const SIGCHLD : :: c_int = 18 ;
You can’t perform that action at this time.
0 commit comments