blob: ceb0a3894cce33ddfd033ba83d823794e2c2d083 [file] [log] [blame]
Andi Kleen6e9bd0f2010-10-06 22:02:58 +00001/* Set the title of a process.
2 Copyright (C) 2010 Free Software Foundation, Inc.
3
4This file is part of the libiberty library.
5Libiberty is free software; you can redistribute it and/or
6modify it under the terms of the GNU Library General Public
7License as published by the Free Software Foundation; either
8version 2 of the License, or (at your option) any later version.
9
10Libiberty is distributed in the hope that it will be useful,
11but WITHOUT ANY WARRANTY; without even the implied warranty of
12MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13Library General Public License for more details.
14
15You should have received a copy of the GNU Library General Public
16License along with libiberty; see the file COPYING.LIB. If not,
17write to the Free Software Foundation, Inc., 51 Franklin Street - Fifth Floor,
18Boston, MA 02110-1301, USA. */
19
20#ifdef HAVE_CONFIG_H
21#include "config.h"
22#endif
Anthony Green52ae1492010-11-21 03:29:27 +000023#ifdef HAVE_SYS_PRCTL_H
Andi Kleen6e9bd0f2010-10-06 22:02:58 +000024#include <sys/prctl.h>
25#endif
26#include "ansidecl.h"
27
28/*
29
Ian Lance Taylorc3735612010-10-29 23:09:50 +000030@deftypefn Supplemental void setproctitle (const char *@var{fmt} ...)
Andi Kleen6e9bd0f2010-10-06 22:02:58 +000031
32Set the title of a process to @var{fmt}. va args not supported for now,
33but defined for compatibility with BSD.
34
35@end deftypefn
36
37*/
38
39void
40setproctitle (const char *name ATTRIBUTE_UNUSED, ...)
41{
Anthony Green52ae1492010-11-21 03:29:27 +000042#ifdef PR_SET_NAME
Andi Kleen6e9bd0f2010-10-06 22:02:58 +000043 /* On Linux this sets the top visible "comm", but not necessarily
44 the name visible in ps. */
45 prctl (PR_SET_NAME, name);
46#endif
47}