File tree 4 files changed +26
-1
lines changed
4 files changed +26
-1
lines changed Original file line number Diff line number Diff line change @@ -1055,9 +1055,13 @@ VM_PROC_MAP
1055
1055
VREPRINT
1056
1056
VSTATUS
1057
1057
VWERASE
1058
+ WALLSIG
1059
+ WALTSIG
1058
1060
WEXITED
1059
1061
WNOWAIT
1062
+ WNOZOMBIE
1060
1063
WSTOPPED
1064
+ WTRAPPED
1061
1065
YESEXPR
1062
1066
YESSTR
1063
1067
_IOFBF
Original file line number Diff line number Diff line change @@ -618,6 +618,9 @@ O_RSYNC
618
618
O_SHLOCK
619
619
O_SYNC
620
620
PENDIN
621
+ P_ALL
622
+ P_PGID
623
+ P_PID
621
624
PF_APPLETALK
622
625
PF_BLUETOOTH
623
626
PF_BPF
@@ -835,6 +838,10 @@ UTIME_OMIT
835
838
UT_HOSTSIZE
836
839
UT_LINESIZE
837
840
UT_NAMESIZE
841
+ WEXITED
842
+ WNOWAIT
843
+ WSTOPPED
844
+ WTRAPPED
838
845
VDISCARD
839
846
VDSUSP
840
847
VLNEXT
Original file line number Diff line number Diff line change @@ -2220,6 +2220,11 @@ pub const WCONTINUED: ::c_int = 0x00000010;
2220
2220
pub const WEXITED : :: c_int = 0x000000020 ;
2221
2221
pub const WNOWAIT : :: c_int = 0x00010000 ;
2222
2222
2223
+ pub const WALTSIG : :: c_int = 0x00000004 ;
2224
+ pub const WALLSIG : :: c_int = 0x00000008 ;
2225
+ pub const WTRAPPED : :: c_int = 0x00000040 ;
2226
+ pub const WNOZOMBIE : :: c_int = 0x00020000 ;
2227
+
2223
2228
pub const P_ALL : idtype_t = 0 ;
2224
2229
pub const P_PID : idtype_t = 1 ;
2225
2230
pub const P_PGID : idtype_t = 4 ;
Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ pub type sigset_t = ::c_uint;
7
7
pub type blksize_t = i32 ;
8
8
pub type fsblkcnt_t = u64 ;
9
9
pub type fsfilcnt_t = u64 ;
10
+ pub type idtype_t = :: c_uint ;
10
11
pub type pthread_attr_t = * mut :: c_void ;
11
12
pub type pthread_mutex_t = * mut :: c_void ;
12
13
pub type pthread_mutexattr_t = * mut :: c_void ;
@@ -1615,7 +1616,15 @@ pub const BIOCSDLT: ::c_ulong = 0x8004427a;
1615
1616
1616
1617
pub const PTRACE_FORK : :: c_int = 0x0002 ;
1617
1618
1618
- pub const WCONTINUED : :: c_int = 8 ;
1619
+ pub const WCONTINUED : :: c_int = 0x08 ;
1620
+ pub const WEXITED : :: c_int = 0x04 ;
1621
+ pub const WSTOPPED : :: c_int = 0x02 ; // same as WUNTRACED
1622
+ pub const WNOWAIT : :: c_int = 0x10 ;
1623
+ pub const WTRAPPED : :: c_int = 0x20 ;
1624
+
1625
+ pub const P_ALL : :: idtype_t = 0 ;
1626
+ pub const P_PGID : :: idtype_t = 1 ;
1627
+ pub const P_PID : :: idtype_t = 2 ;
1619
1628
1620
1629
// search.h
1621
1630
pub const FIND : :: ACTION = 0 ;
You can’t perform that action at this time.
0 commit comments