Searched defs:WIFSIGNALED (Results 1 – 10 of 10) sorted by relevance
46 #define WIFSIGNALED(w) (!WIFEXITED(w) && !WIFSTOPPED(w)) macro
76 #define WIFSIGNALED(x) (((x)&((1<<(EXIT_BITS-1))-1))!=0) macro
85 #define WIFSIGNALED(x) (((x)&((1<<(EXIT_BITS-1))-1))!=0) macro
97 #define WIFSIGNALED(x) ((x).w_stopval != WSTOPPED && (x).w_termsig != 0) macro
87 #define WIFSIGNALED(stat) ((int)((stat)&0xFF) > 0 && \ macro
83 #define WIFSIGNALED(x) (((union __wait*)&(x))->__w_stopval != _WSTOPPED && \ macro
138 #define WIFSIGNALED(stat) (WLOBYTE(stat) > 0 && WHIBYTE(stat) == 0) macro