2011-02-15 12:32:09 +00:00
|
|
|
#ifndef WEXITSTATUS
|
|
|
|
#define WEXITSTATUS(s) (((s) & 0xff00) >> 8)
|
|
|
|
#define WTERMSIG(s) ((s) & 0x7f)
|
|
|
|
#define WSTOPSIG(s) WEXITSTATUS(s)
|
|
|
|
#define WCOREDUMP(s) ((s) & 0x80)
|
|
|
|
#define WIFEXITED(s) (!WTERMSIG(s))
|
|
|
|
#define WIFSTOPPED(s) (((s) & 0xff) == 0x7f)
|
2011-02-19 07:23:29 +00:00
|
|
|
#define WIFSIGNALED(s) (((signed char) (((s) & 0x7f) + 1) >> 1) > 0)
|
|
|
|
#define WIFCONTINUED(s) ((s) == 0xffff)
|
2011-02-15 12:32:09 +00:00
|
|
|
#endif
|