summaryrefslogtreecommitdiff
path: root/klibc/include/sys/wait.h
diff options
context:
space:
mode:
authorGreg Kroah-Hartman <gregkh@suse.de>2005-11-09 09:53:53 -0800
committerGreg Kroah-Hartman <gregkh@suse.de>2005-11-09 09:53:53 -0800
commitf054627f500450a7aadeaf8a9930354fb268718e (patch)
tree29f977b641c6437a720d96e87fe4d6d9ab768d2e /klibc/include/sys/wait.h
parent54eb6a122fc6d2d765b9f71f9b47d529c1acf30f (diff)
parente5bdb75a109c446ff0ca2e27268cdd274ee61a9c (diff)
Merge branch 'master' of gregkh@master.kernel.org:/pub/scm/linux/hotplug/udev
Diffstat (limited to 'klibc/include/sys/wait.h')
-rw-r--r--klibc/include/sys/wait.h28
1 files changed, 0 insertions, 28 deletions
diff --git a/klibc/include/sys/wait.h b/klibc/include/sys/wait.h
deleted file mode 100644
index 4cfafc9408..0000000000
--- a/klibc/include/sys/wait.h
+++ /dev/null
@@ -1,28 +0,0 @@
-/*
- * sys/wait.h
- */
-
-#ifndef _SYS_WAIT_H
-#define _SYS_WAIT_H
-
-#include <klibc/extern.h>
-#include <sys/types.h>
-#include <sys/resource.h>
-
-#include <linux/wait.h>
-
-#define WEXITSTATUS(s) (((s) & 0xff00) >> 8)
-#define WTERMSIG(s) ((s) & 0x7f)
-#define WIFEXITED(s) (WTERMSIG(s) == 0)
-#define WIFSTOPPED(s) (WTERMSIG(s) == 0x7f)
-/* Ugly hack to avoid multiple evaluation of "s" */
-#define WIFSIGNALED(s) (WTERMSIG((s)+1) >= 2)
-#define WCOREDUMP(s) ((s) & 0x80)
-#define WSTOPSIG(s) WEXITSTATUS(s)
-
-__extern pid_t wait(int *);
-__extern pid_t waitpid(pid_t, int *, int);
-__extern pid_t wait3(int *, int, struct rusage *);
-__extern pid_t wait4(pid_t, int *, int, struct rusage *);
-
-#endif /* _SYS_WAIT_H */