diff options
author | Ian Lance Taylor <iant@google.com> | 2011-10-29 00:09:39 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@gcc.gnu.org> | 2011-10-29 00:09:39 +0000 |
commit | d6b0f0f14f2e90a368476bf6b90820ed9ea09ec8 (patch) | |
tree | c8839b1d8182113212a27378d872f3b8a1727571 /libiberty/setproctitle.c | |
parent | dec3d2a0afb226fe3b74164b4db4ef1adf0459bb (diff) | |
download | gcc-d6b0f0f14f2e90a368476bf6b90820ed9ea09ec8.zip gcc-d6b0f0f14f2e90a368476bf6b90820ed9ea09ec8.tar.gz gcc-d6b0f0f14f2e90a368476bf6b90820ed9ea09ec8.tar.bz2 |
* setproctitle.c (setproctitle): Use "GNU/Linux" in comment.
From-SVN: r180641
Diffstat (limited to 'libiberty/setproctitle.c')
-rw-r--r-- | libiberty/setproctitle.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libiberty/setproctitle.c b/libiberty/setproctitle.c index 3b3f377..6a2fe8c 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 } |