Lines Matching refs:status
3343 pub {const} fn WIFSTOPPED(status: c_int) -> bool {
3344 (status & 0xff) == 0x7f
3347 pub {const} fn WSTOPSIG(status: c_int) -> c_int {
3348 (status >> 8) & 0xff
3351 pub {const} fn WIFCONTINUED(status: c_int) -> bool {
3352 status == 0xffff
3355 pub {const} fn WIFSIGNALED(status: c_int) -> bool {
3356 ((status & 0x7f) + 1) as i8 >= 2
3359 pub {const} fn WTERMSIG(status: c_int) -> c_int {
3360 status & 0x7f
3363 pub {const} fn WIFEXITED(status: c_int) -> bool {
3364 (status & 0x7f) == 0
3367 pub {const} fn WEXITSTATUS(status: c_int) -> c_int {
3368 (status >> 8) & 0xff
3371 pub {const} fn WCOREDUMP(status: c_int) -> bool {
3372 (status & 0x80) != 0
3498 pub fn exit(status: c_int) -> !; in exit()
3499 pub fn _exit(status: c_int) -> !; in _exit()
3700 pub fn wait(status: *mut c_int) -> pid_t; in wait()
3701 pub fn waitpid(pid: pid_t, status: *mut c_int, options: c_int) -> pid_t; in waitpid()