summaryrefslogtreecommitdiff
path: root/arch/x86_64/bits/wexitstatus.h
blob: 34a8023820307b42b9eb874600e84e33f4c1782b (plain) (blame)
1
2
3
4
5
6
7
8
9
#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) (!WIFSTOPPED(s) && !WIFEXITED(s))
#endif