aboutsummaryrefslogtreecommitdiff
path: root/gdb/gdb_wait.h
diff options
context:
space:
mode:
authorAndrew Cagney <cagney@redhat.com>2002-02-24 22:14:33 +0000
committerAndrew Cagney <cagney@redhat.com>2002-02-24 22:14:33 +0000
commita4b6fc86fa32d442efcbfb5c17549e4034d44552 (patch)
treea8bd4adafdf89572a89474d7bdbd46b4be03daf2 /gdb/gdb_wait.h
parent8605d56e7a489870c1ac2167046a4f4dad8cc13d (diff)
downloadgdb-a4b6fc86fa32d442efcbfb5c17549e4034d44552.zip
gdb-a4b6fc86fa32d442efcbfb5c17549e4034d44552.tar.gz
gdb-a4b6fc86fa32d442efcbfb5c17549e4034d44552.tar.bz2
s/Linux/.../
Fix PR gdb/378.
Diffstat (limited to 'gdb/gdb_wait.h')
-rw-r--r--gdb/gdb_wait.h12
1 files changed, 5 insertions, 7 deletions
diff --git a/gdb/gdb_wait.h b/gdb/gdb_wait.h
index 63a13d2..fec6f60 100644
--- a/gdb/gdb_wait.h
+++ b/gdb/gdb_wait.h
@@ -39,8 +39,8 @@
/* The following macros are defined equivalently to their definitions
in POSIX.1. We fail to define WNOHANG and WUNTRACED, which POSIX.1
<sys/wait.h> defines, since our code does not use waitpid() (but
- NOTE exception for Linux below).
- We also fail to declare wait() and waitpid(). */
+ NOTE exception for GNU/Linux below). We also fail to declare
+ wait() and waitpid(). */
#ifndef WIFEXITED
#define WIFEXITED(w) (((w)&0377) == 0)
@@ -101,11 +101,9 @@
# endif
#endif
-/*
- * For native Linux we may use waitpid and the __WCLONE option.
- * <GRIPE> It is of course dangerous not to use the REAL header file...
- * </GRIPE>
- */
+/* For native GNU/Linux we may use waitpid and the __WCLONE option.
+ <GRIPE> It is of course dangerous not to use the REAL header file...
+ </GRIPE>. */
/* Bits in the third argument to `waitpid'. */
#ifndef WNOHANG