diff options
author | dzwdz | 2023-06-11 19:17:39 +0200 |
---|---|---|
committer | dzwdz | 2023-06-11 19:17:39 +0200 |
commit | 84fa0102c6906252999967925f32098ab6d5a259 (patch) | |
tree | 00bd8c98a68e4882e2f42510c9c55932ef855ba3 /src/user/lib/include/sys/wait.h | |
parent | ff154205e1671e11ed8566740c1cefaad79c2512 (diff) |
kernel: replace await with wait2, roughly compatible with POSIX
dash works now :^)))
Diffstat (limited to 'src/user/lib/include/sys/wait.h')
-rw-r--r-- | src/user/lib/include/sys/wait.h | 4 |
1 files changed, 2 insertions, 2 deletions
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 |