9a9b91c940
It's finally done.. Signed-off-by: kaguya <vpshinomiya@protonmail.com>
34 lines
818 B
C
Executable File
34 lines
818 B
C
Executable File
#ifndef _ABIBITS_WAIT_H
|
|
#define _ABIBITS_WAIT_H
|
|
|
|
#include <mlibc-config.h>
|
|
|
|
#define WNOHANG 1
|
|
#define WUNTRACED 2
|
|
#define WSTOPPED 2
|
|
#define WEXITED 4
|
|
#define WCONTINUED 8
|
|
#define WNOWAIT 0x01000000
|
|
|
|
#if __MLIBC_LINUX_OPTION
|
|
|
|
#define __WALL 0x40000000
|
|
#define __WCLONE 0x80000000
|
|
|
|
#endif /* __MLIBC_LINUX_OPTION */
|
|
|
|
#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 */ |