mirror of https://git.musl-libc.org/git/musl
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
364 B
10 lines
364 B
#ifndef WEXITSTATUS
|
|
#define WEXITSTATUS(s) (((s) & 0xff00) >> 8)
|
|
#define WTERMSIG(s) ((s) & 0x7f)
|
|
#define WSTOPSIG(s) WEXITSTATUS(s)
|
|
#define WCOREDUMP(s) ((s) & 0x80)
|
|
#define WIFEXITED(s) (!WTERMSIG(s))
|
|
#define WIFSTOPPED(s) (((s) & 0xff) == 0x7f)
|
|
#define WIFSIGNALED(s) (((signed char) (((s) & 0x7f) + 1) >> 1) > 0)
|
|
#define WIFCONTINUED(s) ((s) == 0xffff)
|
|
#endif
|
|
|