diff options
author | Ian Moffett <ian@osmora.org> | 2024-03-07 17:28:52 -0500 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2024-03-07 18:24:51 -0500 |
commit | f5e48e94a2f4d4bbd6e5628c7f2afafc6dbcc459 (patch) | |
tree | 93b156621dc0303816b37f60ba88051b702d92f6 /lib/mlibc/abis/linux/wait.h | |
parent | bd5969fc876a10b18613302db7087ef3c40f18e1 (diff) |
build: Build mlibc + add distclean target
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'lib/mlibc/abis/linux/wait.h')
-rw-r--r-- | lib/mlibc/abis/linux/wait.h | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/lib/mlibc/abis/linux/wait.h b/lib/mlibc/abis/linux/wait.h deleted file mode 100644 index 58d1462..0000000 --- a/lib/mlibc/abis/linux/wait.h +++ /dev/null @@ -1,28 +0,0 @@ -#ifndef _ABIBITS_WAIT_H -#define _ABIBITS_WAIT_H - -#define WNOHANG 1 -#define WUNTRACED 2 -#define WSTOPPED 2 -#define WEXITED 4 -#define WCONTINUED 8 -#define WNOWAIT 0x01000000 - -#define __WALL 0x40000000 -#define __WCLONE 0x80000000 - -#define WCOREFLAG 0x80 - -#define WEXITSTATUS(x) (((x) & 0xff00) >> 8) -#define WTERMSIG(x) ((x) & 0x7f) -#define WSTOPSIG(x) WEXITSTATUS(x) -#define WIFEXITED(x) (WTERMSIG(x) == 0) -#define WIFSIGNALED(x) (((signed char) (((x) & 0x7f) + 1) >> 1) > 0) -#define WIFSTOPPED(x) (((x) & 0xff) == 0x7f) -#define WIFCONTINUED(x) ((x) == 0xffff) -#define WCOREDUMP(x) ((x) & WCOREFLAG) - -/* glibc extension, but also useful for kernels */ -#define W_EXITCODE(ret, sig) (((ret) << 8) | (sig)) - -#endif //_ABIBITS_WAIT_H |