diff options
author | DJ Delorie <dj@redhat.com> | 2011-10-29 01:06:33 +0000 |
---|---|---|
committer | DJ Delorie <dj@redhat.com> | 2011-10-29 01:06:33 +0000 |
commit | eb2722c12c243bf6d1956691f3cc535c4ed3e342 (patch) | |
tree | fc395063d35a16869e810f65445d9e62171d707d /libiberty/setproctitle.c | |
parent | 66f11016e7a293ef9724f861d0bd68c7d7598a8a (diff) | |
download | gdb-eb2722c12c243bf6d1956691f3cc535c4ed3e342.zip gdb-eb2722c12c243bf6d1956691f3cc535c4ed3e342.tar.gz gdb-eb2722c12c243bf6d1956691f3cc535c4ed3e342.tar.bz2 |
merge from gcc
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 } |