File tree Expand file tree Collapse file tree 4 files changed +26
-1
lines changed Expand file tree Collapse file tree 4 files changed +26
-1
lines changed Original file line number Diff line number Diff line change @@ -1055,9 +1055,13 @@ VM_PROC_MAP
10551055VREPRINT
10561056VSTATUS
10571057VWERASE
1058+ WALLSIG
1059+ WALTSIG
10581060WEXITED
10591061WNOWAIT
1062+ WNOZOMBIE
10601063WSTOPPED
1064+ WTRAPPED
10611065YESEXPR
10621066YESSTR
10631067_IOFBF
Original file line number Diff line number Diff line change @@ -618,6 +618,9 @@ O_RSYNC
618618O_SHLOCK
619619O_SYNC
620620PENDIN
621+ P_ALL
622+ P_PGID
623+ P_PID
621624PF_APPLETALK
622625PF_BLUETOOTH
623626PF_BPF
@@ -835,6 +838,10 @@ UTIME_OMIT
835838UT_HOSTSIZE
836839UT_LINESIZE
837840UT_NAMESIZE
841+ WEXITED
842+ WNOWAIT
843+ WSTOPPED
844+ WTRAPPED
838845VDISCARD
839846VDSUSP
840847VLNEXT
Original file line number Diff line number Diff line change @@ -2220,6 +2220,11 @@ pub const WCONTINUED: ::c_int = 0x00000010;
22202220pub const WEXITED : :: c_int = 0x000000020 ;
22212221pub const WNOWAIT : :: c_int = 0x00010000 ;
22222222
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+
22232228pub const P_ALL : idtype_t = 0 ;
22242229pub const P_PID : idtype_t = 1 ;
22252230pub 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;
77pub type blksize_t = i32 ;
88pub type fsblkcnt_t = u64 ;
99pub type fsfilcnt_t = u64 ;
10+ pub type idtype_t = :: c_uint ;
1011pub type pthread_attr_t = * mut :: c_void ;
1112pub type pthread_mutex_t = * mut :: c_void ;
1213pub type pthread_mutexattr_t = * mut :: c_void ;
@@ -1615,7 +1616,15 @@ pub const BIOCSDLT: ::c_ulong = 0x8004427a;
16151616
16161617pub const PTRACE_FORK : :: c_int = 0x0002 ;
16171618
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 ;
16191628
16201629// search.h
16211630pub const FIND : :: ACTION = 0 ;
You can’t perform that action at this time.
0 commit comments