File tree 1 file changed +8
-3
lines changed
1 file changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -48,15 +48,20 @@ libc_bitflags!(
48
48
/// process
49
49
WUNTRACED ,
50
50
/// Waits for children that have terminated.
51
- #[ cfg( any( target_os = "android" , target_os = "linux" ) ) ]
51
+ #[ cfg( any( target_os = "android" ,
52
+ target_os = "freebsd" ,
53
+ target_os = "linux" ,
54
+ target_os = "netbsd" ) ) ]
52
55
WEXITED ,
53
56
/// Report the status of any continued child process specified by pid whose status has not
54
57
/// been reported since it continued from a job control stop.
55
- #[ cfg( any( target_os = "android" , target_os = "linux" ) ) ]
56
58
WCONTINUED ,
57
59
/// Leave the child in a waitable state; a later wait call can be used to again retrieve
58
60
/// the child status information.
59
- #[ cfg( any( target_os = "android" , target_os = "linux" ) ) ]
61
+ #[ cfg( any( target_os = "android" ,
62
+ target_os = "freebsd" ,
63
+ target_os = "linux" ,
64
+ target_os = "netbsd" ) ) ]
60
65
WNOWAIT ,
61
66
/// Don't wait on children of other threads in this group
62
67
#[ cfg( any( target_os = "android" , target_os = "linux" ) ) ]
You can’t perform that action at this time.
0 commit comments