diff options
author | Mark Brown <broonie@kernel.org> | 2023-10-23 21:42:45 +0300 |
---|---|---|
committer | Thomas Weißschuh <linux@weissschuh.net> | 2023-12-12 00:38:08 +0300 |
commit | bb6ec2e9fd8b83b2db68a449754c899a211bf84b (patch) | |
tree | 1dbde61a7af460ae8b34baa5caf699ec61d63a6e /tools/include | |
parent | 89b212d4afef64331b08c44e661a703d2be0970b (diff) | |
download | linux-bb6ec2e9fd8b83b2db68a449754c899a211bf84b.tar.xz |
tools/nolibc: Use linux/wait.h rather than duplicating it
Linux defines a few custom flags for waitpid() which aren't currently
provided by nolibc, make them available to nolibc based programs by just
including linux/wait.h where they are defined instead of defining our
own copy of the flags.
Signed-off-by: Mark Brown <broonie@kernel.org>
Signed-off-by: Willy Tarreau <w@1wt.eu>
Signed-off-by: Thomas Weißschuh <linux@weissschuh.net>
Diffstat (limited to 'tools/include')
-rw-r--r-- | tools/include/nolibc/types.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/tools/include/nolibc/types.h b/tools/include/nolibc/types.h index 8cfc4c860fa4..ad0ddaa89e50 100644 --- a/tools/include/nolibc/types.h +++ b/tools/include/nolibc/types.h @@ -12,6 +12,7 @@ #include <linux/reboot.h> /* for LINUX_REBOOT_* */ #include <linux/stat.h> #include <linux/time.h> +#include <linux/wait.h> /* Only the generic macros and types may be defined here. The arch-specific @@ -108,9 +109,6 @@ #define WTERMSIG(status) ((status) & 0x7f) #define WIFSIGNALED(status) ((status) - 1 < 0xff) -/* waitpid() flags */ -#define WNOHANG 1 - /* standard exit() codes */ #define EXIT_SUCCESS 0 #define EXIT_FAILURE 1 |