summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorTed Vessenes <tvessene@akamai.com>2012-07-11 15:33:45 (GMT)
committerTed Vessenes <tvessene@akamai.com>2012-07-11 15:33:45 (GMT)
commit9bcd0d667c17922fcc6144c5336d1890b2c7b6c5 (patch)
tree6c98a99bd69f28295c0a1d4c060ebf168bade57d /src
parentc752864b8101aa582883fdc5404fc7e5196a8bfc (diff)
downloadNinja-9bcd0d667c17922fcc6144c5336d1890b2c7b6c5.zip
Ninja-9bcd0d667c17922fcc6144c5336d1890b2c7b6c5.tar.gz
Ninja-9bcd0d667c17922fcc6144c5336d1890b2c7b6c5.tar.bz2
Clarify comment wording.
Diffstat (limited to 'src')
-rw-r--r--src/subprocess.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/subprocess.cc b/src/subprocess.cc
index fee842f..1c47fd1 100644
--- a/src/subprocess.cc
+++ b/src/subprocess.cc
@@ -25,9 +25,9 @@
#include <string.h>
#include <sys/wait.h>
-// Older versions of won't find this in <poll.h>. Some versions keep it in
-// <asm-generic/poll.h>, though attempting to include that will redefine the
-// pollfd structure.
+// Older versions of glibc (like 2.4) won't find this in <poll.h>. glibc
+// 2.4 keeps it in <asm-generic/poll.h>, though attempting to include that
+// will redefine the pollfd structure.
#ifndef POLLRDHUP
#define POLLRDHUP 0x2000
#endif