summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorian <ian@138bc75d-0d04-0410-961f-82ee72b054a4>2011-10-29 00:09:39 +0000
committerian <ian@138bc75d-0d04-0410-961f-82ee72b054a4>2011-10-29 00:09:39 +0000
commitb9e8125af42070b761951adff91de6e97e24075b (patch)
treec8839b1d8182113212a27378d872f3b8a1727571
parent8e730f0c50c4b9ec5dcf5dc0d375a0aa3acf6601 (diff)
downloadgcc-b9e8125af42070b761951adff91de6e97e24075b.tar.gz
* setproctitle.c (setproctitle): Use "GNU/Linux" in comment.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@180641 138bc75d-0d04-0410-961f-82ee72b054a4
-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
}