Blame


1 805e39bf 2021-07-22 op /*
2 805e39bf 2021-07-22 op * Copyright (c) 2016 Nicholas Marriott <nicholas.marriott@gmail.com>
3 805e39bf 2021-07-22 op *
4 805e39bf 2021-07-22 op * Permission to use, copy, modify, and distribute this software for any
5 805e39bf 2021-07-22 op * purpose with or without fee is hereby granted, provided that the above
6 805e39bf 2021-07-22 op * copyright notice and this permission notice appear in all copies.
7 805e39bf 2021-07-22 op *
8 805e39bf 2021-07-22 op * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 805e39bf 2021-07-22 op * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 805e39bf 2021-07-22 op * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 805e39bf 2021-07-22 op * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 805e39bf 2021-07-22 op * WHATSOEVER RESULTING FROM LOSS OF MIND, USE, DATA OR PROFITS, WHETHER
13 805e39bf 2021-07-22 op * IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING
14 805e39bf 2021-07-22 op * OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 805e39bf 2021-07-22 op */
16 805e39bf 2021-07-22 op
17 805e39bf 2021-07-22 op #include "compat.h"
18 805e39bf 2021-07-22 op
19 805e39bf 2021-07-22 op #include <sys/types.h>
20 805e39bf 2021-07-22 op
21 805e39bf 2021-07-22 op #include <stdarg.h>
22 805e39bf 2021-07-22 op #include <stdio.h>
23 805e39bf 2021-07-22 op #include <string.h>
24 805e39bf 2021-07-22 op
25 805e39bf 2021-07-22 op #if HAVE_PR_SET_NAME
26 805e39bf 2021-07-22 op
27 805e39bf 2021-07-22 op #include <sys/prctl.h>
28 805e39bf 2021-07-22 op
29 805e39bf 2021-07-22 op void
30 805e39bf 2021-07-22 op setproctitle(const char *fmt, ...)
31 805e39bf 2021-07-22 op {
32 805e39bf 2021-07-22 op char title[16], name[16], *cp;
33 805e39bf 2021-07-22 op va_list ap;
34 805e39bf 2021-07-22 op int used;
35 805e39bf 2021-07-22 op
36 805e39bf 2021-07-22 op va_start(ap, fmt);
37 805e39bf 2021-07-22 op vsnprintf(title, sizeof title, fmt, ap);
38 805e39bf 2021-07-22 op va_end(ap);
39 805e39bf 2021-07-22 op
40 805e39bf 2021-07-22 op used = snprintf(name, sizeof name, "%s: %s", getprogname(), title);
41 805e39bf 2021-07-22 op if (used >= (int)sizeof name) {
42 805e39bf 2021-07-22 op cp = strrchr(name, ' ');
43 805e39bf 2021-07-22 op if (cp != NULL)
44 805e39bf 2021-07-22 op *cp = '\0';
45 805e39bf 2021-07-22 op }
46 805e39bf 2021-07-22 op prctl(PR_SET_NAME, name);
47 805e39bf 2021-07-22 op }
48 805e39bf 2021-07-22 op #else
49 805e39bf 2021-07-22 op void
50 805e39bf 2021-07-22 op setproctitle(const char *fmt, ...)
51 805e39bf 2021-07-22 op {
52 805e39bf 2021-07-22 op (void)fmt;
53 805e39bf 2021-07-22 op }
54 805e39bf 2021-07-22 op #endif