File tree 4 files changed +28
-0
lines changed
4 files changed +28
-0
lines changed Original file line number Diff line number Diff line change @@ -1986,6 +1986,13 @@ pub const PIPE_BUF: usize = 4096;
1986
1986
1987
1987
pub const SI_LOAD_SHIFT : :: c_uint = 16 ;
1988
1988
1989
+ pub const CLD_EXITED : :: c_int = 1 ;
1990
+ pub const CLD_KILLED : :: c_int = 2 ;
1991
+ pub const CLD_DUMPED : :: c_int = 3 ;
1992
+ pub const CLD_TRAPPED : :: c_int = 4 ;
1993
+ pub const CLD_STOPPED : :: c_int = 5 ;
1994
+ pub const CLD_CONTINUED : :: c_int = 6 ;
1995
+
1989
1996
pub const SIGEV_SIGNAL : :: c_int = 0 ;
1990
1997
pub const SIGEV_NONE : :: c_int = 1 ;
1991
1998
pub const SIGEV_THREAD : :: c_int = 2 ;
Original file line number Diff line number Diff line change @@ -439,6 +439,13 @@ pub const TCP_MAXSEG: ::c_int = 2;
439
439
440
440
pub const PIPE_BUF : usize = 512 ;
441
441
442
+ pub const CLD_EXITED : :: c_int = 1 ;
443
+ pub const CLD_KILLED : :: c_int = 2 ;
444
+ pub const CLD_DUMPED : :: c_int = 3 ;
445
+ pub const CLD_TRAPPED : :: c_int = 4 ;
446
+ pub const CLD_STOPPED : :: c_int = 5 ;
447
+ pub const CLD_CONTINUED : :: c_int = 6 ;
448
+
442
449
pub const POLLIN : :: c_short = 0x1 ;
443
450
pub const POLLPRI : :: c_short = 0x2 ;
444
451
pub const POLLOUT : :: c_short = 0x4 ;
Original file line number Diff line number Diff line change @@ -1059,6 +1059,13 @@ pub const WEXITED: ::c_int = 0x08;
1059
1059
pub const WSTOPPED : :: c_int = 0x10 ;
1060
1060
pub const WNOWAIT : :: c_int = 0x20 ;
1061
1061
1062
+ pub const CLD_EXITED : :: c_int = 60 ;
1063
+ pub const CLD_KILLED : :: c_int = 61 ;
1064
+ pub const CLD_DUMPED : :: c_int = 62 ;
1065
+ pub const CLD_TRAPPED : :: c_int = 63 ;
1066
+ pub const CLD_STOPPED : :: c_int = 64 ;
1067
+ pub const CLD_CONTINUED : :: c_int = 65 ;
1068
+
1062
1069
pub const P_ALL : idtype_t = 0 ;
1063
1070
pub const P_PID : idtype_t = 1 ;
1064
1071
pub const P_PGID : idtype_t = 2 ;
Original file line number Diff line number Diff line change @@ -1125,6 +1125,13 @@ pub const PIPE_BUF: usize = 4096;
1125
1125
1126
1126
pub const SI_LOAD_SHIFT : :: c_uint = 16 ;
1127
1127
1128
+ pub const CLD_EXITED : :: c_int = 1 ;
1129
+ pub const CLD_KILLED : :: c_int = 2 ;
1130
+ pub const CLD_DUMPED : :: c_int = 3 ;
1131
+ pub const CLD_TRAPPED : :: c_int = 4 ;
1132
+ pub const CLD_STOPPED : :: c_int = 5 ;
1133
+ pub const CLD_CONTINUED : :: c_int = 6 ;
1134
+
1128
1135
pub const SIGEV_SIGNAL : :: c_int = 0 ;
1129
1136
pub const SIGEV_NONE : :: c_int = 1 ;
1130
1137
pub const SIGEV_THREAD : :: c_int = 2 ;
You can’t perform that action at this time.
0 commit comments