This patch changes "Linux" to "GNU/Linux" in a comment. Bootstrapped
and ran libiberty testsuite on x86_64-unknown-linux-gnu. Committed to
mainline as libiberty maintainer.
Ian
Index: setproctitle.c
===================================================================
--- setproctitle.c (revision 180640)
+++ setproctitle.c (working copy)
@@ -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
}