merge from gcc
authorDJ Delorie <dj@redhat.com>
Sat, 29 Oct 2011 01:06:33 +0000 (01:06 +0000)
committerDJ Delorie <dj@redhat.com>
Sat, 29 Oct 2011 01:06:33 +0000 (01:06 +0000)
libiberty/ChangeLog
libiberty/setproctitle.c

index 8f8e9b2..6a93998 100644 (file)
@@ -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
index 3b3f377..6a2fe8c 100644 (file)
@@ -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
 }