Home
last modified time | relevance | path

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

/bionic/libc/include/sys/
Dwait.h41 #define WTERMSIG(s) ((s) & 0x7f) macro
44 #define WIFEXITED(s) (WTERMSIG(s) == 0)
45 #define WIFSTOPPED(s) (WTERMSIG(s) == 0x7f)
46 #define WIFSIGNALED(s) (WTERMSIG((s)+1) >= 2)