summaryrefslogtreecommitdiff
path: root/arch/x86_64/bits/wexitstatus.h
diff options
context:
space:
mode:
Diffstat (limited to 'arch/x86_64/bits/wexitstatus.h')
-rw-r--r--arch/x86_64/bits/wexitstatus.h10
1 files changed, 0 insertions, 10 deletions
diff --git a/arch/x86_64/bits/wexitstatus.h b/arch/x86_64/bits/wexitstatus.h
deleted file mode 100644
index 591d401a..00000000
--- a/arch/x86_64/bits/wexitstatus.h
+++ /dev/null
@@ -1,10 +0,0 @@
-#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