From: ian Date: Sat, 29 Oct 2011 00:09:39 +0000 (+0000) Subject: * setproctitle.c (setproctitle): Use "GNU/Linux" in comment. X-Git-Url: http://git.sourceforge.jp/view?p=pf3gnuchains%2Fgcc-fork.git;a=commitdiff_plain;h=b9e8125af42070b761951adff91de6e97e24075b * 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 --- 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 + + * 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 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 }