#include <nlibc.h>
Include dependency graph for wait.h:
Go to the source code of this file.
Defines | |
#define | WEXITSTATUS(status) (((status)&0xff00) >> 8) |
#define | WTERMSIG(status) ((status) & 0x7f) |
#define | WSTOPSIG(status) WEXITSTATUS(status) |
#define | WIFEXITED(status) (WTERMSIG(status) == 0) |
#define | WIFSIGNALED(status) (!WIFSTOPPED(status) && !WIFEXITED(status)) |
#define | WIFSTOPPED(status) (((status) & 0xff) == 0x7f) |
|
|
|
|
|
|
|
|
|
|
|
|