File tree Expand file tree Collapse file tree 5 files changed +28
-2
lines changed Expand file tree Collapse file tree 5 files changed +28
-2
lines changed Original file line number Diff line number Diff line change @@ -1055,9 +1055,14 @@ VM_PROC_MAP
1055
1055
VREPRINT
1056
1056
VSTATUS
1057
1057
VWERASE
1058
+ WALLSIG
1059
+ WALTSIG
1060
+ WCONTINUED
1058
1061
WEXITED
1059
1062
WNOWAIT
1063
+ WNOZOMBIE
1060
1064
WSTOPPED
1065
+ WTRAPPED
1061
1066
YESEXPR
1062
1067
YESSTR
1063
1068
_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,11 @@ UTIME_OMIT
835
838
UT_HOSTSIZE
836
839
UT_LINESIZE
837
840
UT_NAMESIZE
841
+ WCONTINUED
842
+ WEXITED
843
+ WNOWAIT
844
+ WSTOPPED
845
+ WTRAPPED
838
846
VDISCARD
839
847
VDSUSP
840
848
VLNEXT
Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ pub type speed_t = ::c_uint;
9
9
pub type tcflag_t = :: c_uint ;
10
10
pub type nl_item = c_long ;
11
11
pub type clockid_t = :: c_int ;
12
+ pub type idtype_t = :: c_int ;
12
13
pub type id_t = u32 ;
13
14
pub type sem_t = * mut sem ;
14
15
pub type key_t = c_long ;
Original file line number Diff line number Diff line change @@ -4,7 +4,6 @@ pub type dev_t = u64;
4
4
pub type blksize_t = i32 ;
5
5
pub type fsblkcnt_t = u64 ;
6
6
pub type fsfilcnt_t = u64 ;
7
- pub type idtype_t = :: c_int ;
8
7
pub type mqd_t = :: c_int ;
9
8
type __pthread_spin_t = __cpu_simple_lock_nv_t ;
10
9
pub type vm_size_t = :: uintptr_t ; // FIXME: deprecated since long time
@@ -2220,6 +2219,11 @@ pub const WCONTINUED: ::c_int = 0x00000010;
2220
2219
pub const WEXITED : :: c_int = 0x000000020 ;
2221
2220
pub const WNOWAIT : :: c_int = 0x00010000 ;
2222
2221
2222
+ pub const WALTSIG : :: c_int = 0x00000004 ;
2223
+ pub const WALLSIG : :: c_int = 0x00000008 ;
2224
+ pub const WTRAPPED : :: c_int = 0x00000040 ;
2225
+ pub const WNOZOMBIE : :: c_int = 0x00020000 ;
2226
+
2223
2227
pub const P_ALL : idtype_t = 0 ;
2224
2228
pub const P_PID : idtype_t = 1 ;
2225
2229
pub const P_PGID : idtype_t = 4 ;
Original file line number Diff line number Diff line change @@ -1615,7 +1615,15 @@ pub const BIOCSDLT: ::c_ulong = 0x8004427a;
1615
1615
1616
1616
pub const PTRACE_FORK : :: c_int = 0x0002 ;
1617
1617
1618
- pub const WCONTINUED : :: c_int = 8 ;
1618
+ pub const WCONTINUED : :: c_int = 0x08 ;
1619
+ pub const WEXITED : :: c_int = 0x04 ;
1620
+ pub const WSTOPPED : :: c_int = 0x02 ; // same as WUNTRACED
1621
+ pub const WNOWAIT : :: c_int = 0x10 ;
1622
+ pub const WTRAPPED : :: c_int = 0x20 ;
1623
+
1624
+ pub const P_ALL : idtype_t = 0 ;
1625
+ pub const P_PGID : idtype_t = 1 ;
1626
+ pub const P_PID : idtype_t = 2 ;
1619
1627
1620
1628
// search.h
1621
1629
pub const FIND : :: ACTION = 0 ;
You can’t perform that action at this time.
0 commit comments