File tree Expand file tree Collapse file tree 1 file changed +21
-0
lines changed Expand file tree Collapse file tree 1 file changed +21
-0
lines changed Original file line number Diff line number Diff line change @@ -8,10 +8,31 @@ libc_bitflags!(
8
8
pub struct WaitPidFlag : c_int {
9
9
WNOHANG ;
10
10
WUNTRACED ;
11
+ #[ cfg( any( target_os = "android" ,
12
+ target_os = "freebsd" ,
13
+ target_os = "haiku" ,
14
+ target_os = "ios" ,
15
+ target_os = "linux" ,
16
+ target_os = "macos" ,
17
+ target_os = "netbsd" ) ) ]
11
18
WEXITED ;
12
19
WCONTINUED ;
20
+ #[ cfg( any( target_os = "android" ,
21
+ target_os = "freebsd" ,
22
+ target_os = "haiku" ,
23
+ target_os = "ios" ,
24
+ target_os = "linux" ,
25
+ target_os = "macos" ,
26
+ target_os = "netbsd" ) ) ]
13
27
WSTOPPED ;
14
28
/// Don't reap, just poll status.
29
+ #[ cfg( any( target_os = "android" ,
30
+ target_os = "freebsd" ,
31
+ target_os = "haiku" ,
32
+ target_os = "ios" ,
33
+ target_os = "linux" ,
34
+ target_os = "macos" ,
35
+ target_os = "netbsd" ) ) ]
15
36
WNOWAIT ;
16
37
/// Don't wait on children of other threads in this group
17
38
#[ cfg( any( target_os = "android" , target_os = "linux" ) ) ]
You can’t perform that action at this time.
0 commit comments