Location:
wait.h
WIFEXITED (w) (((w) & 0xff) == 0)
A status looks like: <2 bytes info> <2 bytes code>
== 0, child has exited, info is the exit value == 1..7e, child has exited, info is the signal number. == 7f, child has
stopped, info was the signal number. == 80, there was a core dump. <code/>
|