diff options
Diffstat (limited to 'src/user/lib/include')
-rw-r--r-- | src/user/lib/include/__errno.h | 1 | ||||
-rw-r--r-- | src/user/lib/include/sys/wait.h | 4 |
2 files changed, 3 insertions, 2 deletions
diff --git a/src/user/lib/include/__errno.h b/src/user/lib/include/__errno.h index f72fcf6..0808ac6 100644 --- a/src/user/lib/include/__errno.h +++ b/src/user/lib/include/__errno.h @@ -13,6 +13,7 @@ E( 10, "EACCES") E( 11, "EMFILE all file descriptors taken") E( 12, "ECONNRESET") E( 13, "EPIPE") +E( 14, "ECHILD") E(200, "EISDIR") E(201, "ENAMETOOLONG") E(202, "ENOTDIR") diff --git a/src/user/lib/include/sys/wait.h b/src/user/lib/include/sys/wait.h index c71418c..cff407e 100644 --- a/src/user/lib/include/sys/wait.h +++ b/src/user/lib/include/sys/wait.h @@ -2,8 +2,8 @@ #include <sys/types.h> #define WIFSTOPPED(x) 0 -#define WEXITSTATUS(x) 0 -#define WIFEXITED(x) 0 +#define WEXITSTATUS(x) ((x)&0xFF) +#define WIFEXITED(x) 1 #define WSTOPSIG(x) 0 #define WTERMSIG(x) 0 |