Lines Matching refs:status
3279 pub {const} fn WIFSTOPPED(status: ::c_int) -> bool {
3280 (status & 0xff) == 0x7f
3283 pub {const} fn WSTOPSIG(status: ::c_int) -> ::c_int {
3284 (status >> 8) & 0xff
3287 pub {const} fn WIFCONTINUED(status: ::c_int) -> bool {
3288 status == 0xffff
3291 pub {const} fn WIFSIGNALED(status: ::c_int) -> bool {
3292 ((status & 0x7f) + 1) as i8 >= 2
3295 pub {const} fn WTERMSIG(status: ::c_int) -> ::c_int {
3296 status & 0x7f
3299 pub {const} fn WIFEXITED(status: ::c_int) -> bool {
3300 (status & 0x7f) == 0
3303 pub {const} fn WEXITSTATUS(status: ::c_int) -> ::c_int {
3304 (status >> 8) & 0xff
3307 pub {const} fn WCOREDUMP(status: ::c_int) -> bool {
3308 (status & 0x80) != 0
3420 pub fn exit(status: c_int) -> !;
3421 pub fn _exit(status: c_int) -> !;
3635 pub fn wait(status: *mut ::c_int) -> pid_t;
3636 pub fn waitpid(pid: pid_t, status: *mut ::c_int, options: ::c_int) -> pid_t;