summaryrefslogtreecommitdiff
path: root/libiberty/setproctitle.c
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 /libiberty/setproctitle.c
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
Diffstat (limited to 'libiberty/setproctitle.c')
-rw-r--r--libiberty/setproctitle.c4
1 files changed, 2 insertions, 2 deletions
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
}