Skip to content

Commit a355db4

Browse files
committed
Add missing wait flag WUNTRACED for non-Linux systems
1 parent c14bfc5 commit a355db4

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/sys/wait.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ mod ffi {
1616
bitflags!(
1717
flags WaitPidFlag: c_int {
1818
const WNOHANG = 0x00000001,
19+
const WUNTRACED = 0x00000002,
1920
}
2021
);
2122

0 commit comments

Comments
 (0)