Lines Matching refs:status
424 pub status: c_int,
1170 pub fn exit(status: c_int) -> !; in exit()
1238 pub fn wait(status: *mut c_int) -> pid_t; in wait()
1563 pub fn pthread_join(thread: crate::pthread_t, status: *mut *mut c_void) -> c_int; in pthread_join()
1732 pub fn waitpid(pid: pid_t, status: *mut c_int, options: c_int) -> pid_t; in waitpid()
1819 pub fn _exit(status: c_int) -> !; in _exit()
1941 pub {const} fn WIFEXITED(status: c_int) -> bool {
1942 (status & 0xFF00) == 0
1944 pub {const} fn WIFSIGNALED(status: c_int) -> bool {
1945 (status & 0xFF00) != 0
1947 pub {const} fn WIFSTOPPED(status: c_int) -> bool {
1948 (status & 0xFF0000) != 0
1950 pub {const} fn WEXITSTATUS(status: c_int) -> c_int {
1951 status & 0xFF
1953 pub {const} fn WTERMSIG(status: c_int) -> c_int {
1954 (status >> 8) & 0xFF
1956 pub {const} fn WSTOPSIG(status: c_int) -> c_int {
1957 (status >> 16) & 0xFF