diff options
author | Michael Meissner <gnu@the-meissners.org> | 1995-12-21 19:51:55 +0000 |
---|---|---|
committer | Michael Meissner <gnu@the-meissners.org> | 1995-12-21 19:51:55 +0000 |
commit | 29a766d2d4f40dba73385bb4f0685683c736f87c (patch) | |
tree | 4b17da5dab094d2cd851e91792737387bf4ff48e /include | |
parent | 36cb0e7c73e1f1780dcd24036f79dc0ab3d18a2e (diff) | |
download | gdb-29a766d2d4f40dba73385bb4f0685683c736f87c.zip gdb-29a766d2d4f40dba73385bb4f0685683c736f87c.tar.gz gdb-29a766d2d4f40dba73385bb4f0685683c736f87c.tar.bz2 |
Add ifndef wrappers
Diffstat (limited to 'include')
-rw-r--r-- | include/ChangeLog | 5 | ||||
-rw-r--r-- | include/wait.h | 25 |
2 files changed, 27 insertions, 3 deletions
diff --git a/include/ChangeLog b/include/ChangeLog index 88ec03d..bbd619b 100644 --- a/include/ChangeLog +++ b/include/ChangeLog @@ -1,7 +1,6 @@ -Tue Nov 7 14:38:45 1995 Kim Knuttila <krk@cygnus.com> +Thu Dec 21 14:47:17 1995 Michael Meissner <meissner@tiktok.cygnus.com> - * coff/powerpc.h (IMAGE_NT_OPTIONAL_HDR_MAGIC): Added define. - * coff/pe.h: Added defines for file level flags + * wait.h: Protect all macros with #ifndef. Tue Oct 24 21:45:40 1995 Ian Lance Taylor <ian@cygnus.com> diff --git a/include/wait.h b/include/wait.h index a72943c..fa3c9cc 100644 --- a/include/wait.h +++ b/include/wait.h @@ -10,8 +10,15 @@ <sys/wait.h> defines, since our code does not use waitpid(). We also fail to declare wait() and waitpid(). */ +#ifndef WIFEXITED #define WIFEXITED(w) (((w)&0377) == 0) +#endif + +#ifndef WIFSIGNALED #define WIFSIGNALED(w) (((w)&0377) != 0177 && ((w)&~0377) == 0) +#endif + +#ifndef WIFSTOPPED #ifdef IBM6000 /* Unfortunately, the above comment (about being compatible in all Unix @@ -24,15 +31,33 @@ #else #define WIFSTOPPED(w) (((w)&0377) == 0177) #endif +#endif +#ifndef WEXITSTATUS #define WEXITSTATUS(w) (((w) >> 8) & 0377) /* same as WRETCODE */ +#endif + +#ifndef WTERMSIG #define WTERMSIG(w) ((w) & 0177) +#endif + +#ifndef WSTOPSIG #define WSTOPSIG WEXITSTATUS +#endif /* These are not defined in POSIX, but are used by our programs. */ #define WAITTYPE int +#ifndef WCOREDUMP #define WCOREDUMP(w) (((w)&0200) != 0) +#endif + +#ifndef WSETEXIT #define WSETEXIT(w,status) ((w) = (0 | ((status) << 8))) +#endif + +#ifndef WSETSTOP #define WSETSTOP(w,sig) ((w) = (0177 | ((sig) << 8))) +#endif + |