Searched refs:status (Results 1 – 1 of 1) sorted by relevance
28 #define __WEXITSTATUS(status) (((status) & 0xff00) >> 8) argument31 #define __WTERMSIG(status) ((status) & 0x7f) argument34 #define __WSTOPSIG(status) __WEXITSTATUS(status) argument37 #define __WIFEXITED(status) (__WTERMSIG(status) == 0) argument40 #define __WIFSIGNALED(status) \ argument41 (((signed char) (((status) & 0x7f) + 1) >> 1) > 0)44 #define __WIFSTOPPED(status) (((status) & 0xff) == 0x7f) argument49 # define __WIFCONTINUED(status) ((status) == __W_CONTINUED) argument53 #define __WCOREDUMP(status) ((status) & __WCOREFLAG) argument
Completed in 3 milliseconds