WIFSIGNALED
#define WIFSIGNALED(x) (!WIFSTOPPED(x) && !WIFCONTINUED(x) && !WIFEXITED(x))
#define WIFSIGNALED(x) (WTERMSIG(x) != 0)