File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -1032,20 +1032,20 @@ f! {
1032
1032
status >> 8
1033
1033
}
1034
1034
1035
- pub fn WSTATUS ( status: :: c_int) -> :: c_int {
1035
+ pub fn _WSTATUS ( status: :: c_int) -> :: c_int {
1036
1036
status & 0x7f
1037
1037
}
1038
1038
1039
1039
pub fn WIFCONTINUED ( status: :: c_int) -> bool {
1040
- WSTATUS ( status) == _WSTOPPED && WSTOPSIG ( status) == 0x13
1040
+ _WSTATUS ( status) == _WSTOPPED && WSTOPSIG ( status) == 0x13
1041
1041
}
1042
1042
1043
1043
pub fn WIFSIGNALED ( status: :: c_int) -> bool {
1044
- WSTATUS ( status) != _WSTOPPED && WSTATUS ( status) != 0
1044
+ _WSTATUS ( status) != _WSTOPPED && _WSTATUS ( status) != 0
1045
1045
}
1046
1046
1047
1047
pub fn WIFSTOPPED ( status: :: c_int) -> bool {
1048
- WSTATUS ( status) == _WSTOPPED && WSTOPSIG ( status) != 0x13
1048
+ _WSTATUS ( status) == _WSTOPPED && WSTOPSIG ( status) != 0x13
1049
1049
}
1050
1050
}
1051
1051
You can’t perform that action at this time.
0 commit comments