Blame


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