summaryrefslogtreecommitdiff
path: root/libiberty
diff options
context:
space:
mode:
authorDJ Delorie <dj@delorie.com>2011-10-29 01:06:33 +0000
committerDJ Delorie <dj@delorie.com>2011-10-29 01:06:33 +0000
commitfbba457651459c1cf05f5b54e21f2f73c6d63a10 (patch)
tree50827c6ba117c6145a4171e50ba683b25315ba8c /libiberty
parentc5c2e8560ac346a26c469bccd600964291cedce2 (diff)
downloadgdb-fbba457651459c1cf05f5b54e21f2f73c6d63a10.tar.gz
merge from gcc
Diffstat (limited to 'libiberty')
-rw-r--r--libiberty/ChangeLog4
-rw-r--r--libiberty/setproctitle.c4
2 files changed, 6 insertions, 2 deletions
diff --git a/libiberty/ChangeLog b/libiberty/ChangeLog
index 8f8e9b2246b..6a93998e244 100644
--- a/libiberty/ChangeLog
+++ b/libiberty/ChangeLog
@@ -1,3 +1,7 @@
+2011-10-28 Ian Lance Taylor <iant@google.com>
+
+ * setproctitle.c (setproctitle): Use "GNU/Linux" in comment.
+
2011-10-26 Iain Sandoe <iains@gcc.gnu.org>
PR target/48108
diff --git a/libiberty/setproctitle.c b/libiberty/setproctitle.c
index 3b3f377b67b..6a2fe8ce3a5 100644
--- a/libiberty/setproctitle.c
+++ b/libiberty/setproctitle.c
@@ -41,8 +41,8 @@ void
setproctitle (const char *name ATTRIBUTE_UNUSED, ...)
{
#ifdef PR_SET_NAME
- /* On Linux this sets the top visible "comm", but not necessarily
- the name visible in ps. */
+ /* On GNU/Linux this sets the top visible "comm", but not
+ necessarily the name visible in ps. */
prctl (PR_SET_NAME, name);
#endif
}