5 * Copyright (C) 2011 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; only
10 * version 2.1 of the License.
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
23 * lttng_ust_getprocname.
27 #include <sys/prctl.h>
29 #define LTTNG_UST_PROCNAME_LEN 17
32 void lttng_ust_getprocname(char *name
)
34 (void) prctl(PR_GET_NAME
, (unsigned long) name
, 0, 0, 0);
37 #elif defined(__FreeBSD__)
42 * Limit imposed by Linux UST-sessiond ABI.
44 #define LTTNG_UST_PROCNAME_LEN 17
47 * Acts like linux prctl, the string is not necessarily 0-terminated if
51 void lttng_ust_getprocname(char *name
)
55 bsd_name
= getprogname();
59 strncpy(name
, bsd_name
, LTTNG_UST_PROCNAME_LEN
- 1);
67 #define ENODATA ENOMSG
70 #endif /* _UST_COMPAT_H */
This page took 0.030644 seconds and 4 git commands to generate.