Home
last modified time | relevance | path

Searched refs:status (Results 1 – 1 of 1) sorted by relevance

/bits/
A Dwaitstatus.h28 #define __WEXITSTATUS(status) (((status) & 0xff00) >> 8) argument
31 #define __WTERMSIG(status) ((status) & 0x7f) argument
34 #define __WSTOPSIG(status) __WEXITSTATUS(status) argument
37 #define __WIFEXITED(status) (__WTERMSIG(status) == 0) argument
40 #define __WIFSIGNALED(status) \ argument
41 (((signed char) (((status) & 0x7f) + 1) >> 1) > 0)
44 #define __WIFSTOPPED(status) (((status) & 0xff) == 0x7f) argument
49 # define __WIFCONTINUED(status) ((status) == __W_CONTINUED) argument
53 #define __WCOREDUMP(status) ((status) & __WCOREFLAG) argument

Completed in 3 milliseconds