00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016 #ifndef _WAIT_H
00017 #define _WAIT_H
00018
00019 #include <nlibc.h>
00020
00021 #define WEXITSTATUS(status) (((status)&0xff00) >> 8)
00022 #define WTERMSIG(status) ((status) & 0x7f)
00023 #define WSTOPSIG(status) WEXITSTATUS(status)
00024 #define WIFEXITED(status) (WTERMSIG(status) == 0)
00025 #define WIFSIGNALED(status) (!WIFSTOPPED(status) && !WIFEXITED(status))
00026 #define WIFSTOPPED(status) (((status) & 0xff) == 0x7f)
00027
00028
00029 #endif