File tree 2 files changed +12
-2
lines changed
2 files changed +12
-2
lines changed Original file line number Diff line number Diff line change @@ -285,7 +285,8 @@ pub const FLUSHO: ::tcflag_t = 0x00800000;
285
285
pub const PENDIN : :: tcflag_t = 0x20000000 ;
286
286
pub const NOFLSH : :: tcflag_t = 0x80000000 ;
287
287
288
- pub const WNOHANG : :: c_int = 1 ;
288
+ pub const WNOHANG : :: c_int = 0x00000001 ;
289
+ pub const WUNTRACED : :: c_int = 0x00000002 ;
289
290
290
291
pub const RTLD_NOW : :: c_int = 0x2 ;
291
292
pub const RTLD_DEFAULT : * mut :: c_void = -2isize as * mut :: c_void ;
Original file line number Diff line number Diff line change @@ -627,7 +627,16 @@ pub const CLONE_NEWPID: ::c_int = 0x20000000;
627
627
pub const CLONE_NEWNET : :: c_int = 0x40000000 ;
628
628
pub const CLONE_IO : :: c_int = 0x80000000 ;
629
629
630
- pub const WNOHANG : :: c_int = 1 ;
630
+ pub const WNOHANG : :: c_int = 0x00000001 ;
631
+ pub const WUNTRACED : :: c_int = 0x00000002 ;
632
+ pub const WSTOPPED : :: c_int = WUNTRACED ;
633
+ pub const WEXITED : :: c_int = 0x00000004 ;
634
+ pub const WCONTINUED : :: c_int = 0x00000008 ;
635
+ pub const WNOWAIT : :: c_int = 0x01000000 ;
636
+
637
+ pub const __WNOTHREAD: :: c_int = 0x20000000 ;
638
+ pub const __WALL: :: c_int = 0x40000000 ;
639
+ pub const __WCLONE: :: c_int = 0x80000000 ;
631
640
632
641
pub const SPLICE_F_MOVE : :: c_uint = 0x01 ;
633
642
pub const SPLICE_F_NONBLOCK : :: c_uint = 0x02 ;
You can’t perform that action at this time.
0 commit comments