From: Ian Lance Taylor Date: Sat, 29 Oct 2011 00:09:39 +0000 (+0000) Subject: * setproctitle.c (setproctitle): Use "GNU/Linux" in comment. X-Git-Tag: releases/gcc-4.7.0~2725 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d6b0f0f14f2e90a368476bf6b90820ed9ea09ec8;p=thirdparty%2Fgcc.git * setproctitle.c (setproctitle): Use "GNU/Linux" in comment. From-SVN: r180641 --- diff --git a/libiberty/ChangeLog b/libiberty/ChangeLog index 8f8e9b2246b8..6a93998e2442 100644 --- a/libiberty/ChangeLog +++ b/libiberty/ChangeLog @@ -1,3 +1,7 @@ +2011-10-28 Ian Lance Taylor + + * setproctitle.c (setproctitle): Use "GNU/Linux" in comment. + 2011-10-26 Iain Sandoe PR target/48108 diff --git a/libiberty/setproctitle.c b/libiberty/setproctitle.c index 3b3f377b67b7..6a2fe8ce3a5b 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 }