]> git.ipfire.org Git - thirdparty/man-pages.git/blame - man3/pthread_setname_np.3
ioctl_console.2, ioctl_getfsmap.2, ioctl_iflags.2, ioctl_list.2, ioctl_ns.2, kcmp...
[thirdparty/man-pages.git] / man3 / pthread_setname_np.3
CommitLineData
5df98ea9 1.\" Copyright (C) 2012 Chandan Apsangi <chandan.jc@gmail.com>
7d928e0d 2.\" and Copyright (C) 2013 Michael Kerrisk <mtk.manpages@gmail.com>
5df98ea9 3.\"
93015253 4.\" %%%LICENSE_START(VERBATIM)
5df98ea9
MK
5.\" Permission is granted to make and distribute verbatim copies of this
6.\" manual provided the copyright notice and this permission notice are
7.\" preserved on all copies.
8.\"
9.\" Permission is granted to copy and distribute modified versions of this
10.\" manual under the conditions for verbatim copying, provided that the
11.\" entire resulting derived work is distributed under the terms of a
12.\" permission notice identical to this one.
13.\"
14.\" Since the Linux kernel and libraries are constantly changing, this
15.\" manual page may be incorrect or out-of-date. The author(s) assume no
16.\" responsibility for errors or omissions, or for damages resulting from
17.\" the use of the information contained herein. The author(s) may not
18.\" have taken the same level of care in the production of this manual,
19.\" which is licensed free of charge, as they might when working
20.\" professionally.
21.\"
22.\" Formatted or processed versions of this manual, if unaccompanied by
23.\" the source, must acknowledge the copyright and authors of this work.
4b72fb64 24.\" %%%LICENSE_END
5df98ea9 25.\"
5722c835 26.TH PTHREAD_SETNAME_NP 3 2015-07-23 "Linux" "Linux Programmer's Manual"
5df98ea9
MK
27.SH NAME
28pthread_setname_np, pthread_getname_np \- set/get the name of a thread
29.SH SYNOPSIS
30.nf
31.BR "#define _GNU_SOURCE" " /* See feature_test_macros(7) */"
32.B #include <pthread.h>
1ba74ca2
AC
33.BI "int pthread_setname_np(pthread_t " thread ", const char *" name ");
34.BI "int pthread_getname_np(pthread_t " thread ,
3ea70557 35.BI " char *" name ", size_t " len );
5df98ea9 36.fi
68e4db0a 37.PP
5df98ea9
MK
38Compile and link with \fI\-pthread\fP.
39.SH DESCRIPTION
40By default, all the threads created using
e4a83b01 41.BR pthread_create ()
5df98ea9 42inherit the program name.
e4a83b01
MK
43The
44.BR pthread_setname_np ()
f1a5fff8 45function can be used to set a unique name for a thread,
e4a83b01 46which can be useful for debugging
ce0234ff 47multithreaded applications.
5df98ea9 48The thread name is a meaningful C language string, whose length is
f24e3a3a 49restricted to 16 characters, including the terminating null byte (\(aq\\0\(aq).
6350e974
MK
50The
51.I thread
52argument specifies the thread whose name is to be changed;
53.I name
54specifies the new name.
847e0d88 55.PP
5df98ea9 56The
e4a83b01
MK
57.BR pthread_getname_np ()
58function can be used to retrieve the name of the thread.
6350e974
MK
59The
60.I thread
3fd9346e 61argument specifies the thread whose name is to be retrieved.
6350e974
MK
62The buffer
63.I name
64is used to return the thread name;
65.I len
66specifies the number of bytes available in
67.IR name .
e4a83b01
MK
68The buffer specified by
69.I name
6350e974 70should be at least 16 characters in length.
5df98ea9
MK
71The returned thread name in the output buffer will be null terminated.
72.SH RETURN VALUE
73On success, these functions return 0;
74on error, they return a nonzero error number.
75.SH ERRORS
eb6c2cc6
MK
76The
77.BR pthread_setname_np ()
4a2403ed 78function can fail with the following error:
5df98ea9
MK
79.TP
80.B ERANGE
e4a83b01
MK
81The length of the string specified pointed to by
82.I name
83exceeds the allowed limit.
84.PP
4a2403ed
MK
85The
86.BR pthread_getname_np ()
87function can fail with the following error:
88.TP
89.B ERANGE
90The buffer specified by
91.I name
92and
93.I len
94is too small to hold the thread name.
95.PP
e4a83b01
MK
96If either of these functions fails to open
97.IR /proc/self/task/[tid]/comm ,
98then the call may fail with one of the errors described in
99.BR open (2).
fbc7552a
MK
100.SH VERSIONS
101These functions first appeared in glibc in version 2.12.
412793f9
ZL
102.SH ATTRIBUTES
103For an explanation of the terms used in this section, see
104.BR attributes (7).
105.TS
106allbox;
107lbw21 lb lb
108l l l.
109Interface Attribute Value
110T{
111.BR pthread_setname_np (),
112.BR pthread_getname_np ()
113T} Thread safety MT-Safe
114.TE
847e0d88 115.sp 1
c2ba212d
MK
116.SH CONFORMING TO
117These functions are nonstandard GNU extensions.
5df98ea9 118.SH NOTES
e4a83b01 119.BR pthread_setname_np ()
f2cc5c88 120internally writes to the thread-specific
7d4d1f8a 121.I comm
f2cc5c88 122file under the
5df98ea9
MK
123.IR /proc
124filesystem:
e4a83b01
MK
125.IR /proc/self/task/[tid]/comm .
126.BR pthread_getname_np ()
3fd9346e 127retrieves it from the same location.
5df98ea9
MK
128.SH EXAMPLE
129.PP
130The program below demonstrates the use of
e4a83b01
MK
131.BR pthread_setname_np ()
132and
5df98ea9 133.BR pthread_getname_np ().
847e0d88 134.PP
5df98ea9 135The following shell session shows a sample run of the program:
e646a1ba 136.PP
5df98ea9 137.in +4n
e646a1ba 138.EX
e4a83b01 139.RB "$" " ./a.out"
5df98ea9
MK
140Created a thread. Default name is: a.out
141The thread name after setting it is THREADFOO.
6cfa298b
MK
142\fB^Z\fP # Suspend the program
143[1]+ Stopped ./a.out
144.RB "$ " "ps H -C a.out -o 'pid tid cmd comm'"
145 PID TID CMD COMMAND
146 5990 5990 ./a.out a.out
147 5990 5991 ./a.out THREADFOO
148.RB "$ " "cat /proc/5990/task/5990/comm"
149a.out
150.RB "$ " "cat /proc/5990/task/5991/comm"
151THREADFOO
5df98ea9
MK
152.fi
153.in
5df98ea9
MK
154.SS Program source
155\&
e7d0bb47 156.EX
5df98ea9 157#define _GNU_SOURCE
5df98ea9
MK
158#include <pthread.h>
159#include <stdio.h>
160#include <string.h>
161#include <unistd.h>
162#include <errno.h>
163#include <stdlib.h>
164
165#define NAMELEN 16
166
167#define errExitEN(en, msg) \\
b615a97e 168 do { errno = en; perror(msg); exit(EXIT_FAILURE); \\
5df98ea9
MK
169 } while (0)
170
30a87638
MK
171static void *
172threadfunc(void *parm)
5df98ea9 173{
b615a97e 174 sleep(5); // allow main program to set the thread name
5df98ea9
MK
175 return NULL;
176}
177
30a87638
MK
178int
179main(int argc, char **argv)
5df98ea9
MK
180{
181 pthread_t thread;
182 int rc;
183 char thread_name[NAMELEN];
184
185 rc = pthread_create(&thread, NULL, threadfunc, NULL);
b615a97e
MK
186 if (rc != 0)
187 errExitEN(rc, "pthread_create");
e4a83b01 188
5df98ea9 189 rc = pthread_getname_np(thread, thread_name, NAMELEN);
b615a97e
MK
190 if (rc != 0)
191 errExitEN(rc, "pthread_getname_np");
91e38d87 192
b615a97e 193 printf("Created a thread. Default name is: %s\\n", thread_name);
e49d4430 194 rc = pthread_setname_np(thread, (argc > 1) ? argv[1] : "THREADFOO");
b615a97e
MK
195 if (rc != 0)
196 errExitEN(rc, "pthread_setname_np");
e4a83b01 197
5df98ea9 198 sleep(2);
36127c0e 199
101d0a57
MK
200 rc = pthread_getname_np(thread, thread_name,
201 (argc > 2) ? atoi(argv[1]) : NAMELEN);
b615a97e
MK
202 if (rc != 0)
203 errExitEN(rc, "pthread_getname_np");
5df98ea9 204 printf("The thread name after setting it is %s.\\n", thread_name);
36127c0e 205
5df98ea9 206 rc = pthread_join(thread, NULL);
b615a97e
MK
207 if (rc != 0)
208 errExitEN(rc, "pthread_join");
36127c0e 209
5df98ea9
MK
210 printf("Done\\n");
211 exit(EXIT_SUCCESS);
212}
e7d0bb47 213.EE
5df98ea9
MK
214.SH SEE ALSO
215.ad l
216.nh
217.BR prctl (2),
218.BR pthread_create (3),
219.BR pthreads (7)