Home
last modified time | relevance | path

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

/titanic_44/usr/src/cmd/ssh/include/
H A Dbsd-waitpid.h43 #define _W_INT(w) (*(int*)&(w)) /* convert union wait to int */ macro
44 #define WIFEXITED(w) (!((_W_INT(w)) & 0377))
45 #define WIFSTOPPED(w) ((_W_INT(w)) & 0100)
47 #define WEXITSTATUS(w) (int)(WIFEXITED(w) ? ((_W_INT(w) >> 8) & 0377) : -1)
48 #define WTERMSIG(w) (int)(WIFSIGNALED(w) ? (_W_INT(w) & 0177) : -1)
50 #define WCOREDUMP(w) ((_W_INT(w)) & WCOREFLAG)