Update copyright notices with scripts/update-copyrights
[glibc.git] / nptl / sysdeps / unix / sysv / linux / pthread_setname.c
blob409560e5860433d26f1d47413321586d323b5de3
1 /* pthread_setname_np -- Set thread name. Linux version
2 Copyright (C) 2010-2014 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public License as
7 published by the Free Software Foundation; either version 2.1 of the
8 License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; see the file COPYING.LIB. If
17 not, see <http://www.gnu.org/licenses/>. */
19 #include <errno.h>
20 #include <fcntl.h>
21 #include <pthreadP.h>
22 #include <stdio.h>
23 #include <string.h>
24 #include <unistd.h>
25 #include <sys/prctl.h>
27 #include <not-cancel.h>
30 int
31 pthread_setname_np (th, name)
32 pthread_t th;
33 const char *name;
35 const struct pthread *pd = (const struct pthread *) th;
37 /* Unfortunately the kernel headers do not export the TASK_COMM_LEN
38 macro. So we have to define it here. */
39 #define TASK_COMM_LEN 16
40 size_t name_len = strlen (name);
41 if (name_len >= TASK_COMM_LEN)
42 return ERANGE;
44 if (pd == THREAD_SELF)
45 return prctl (PR_SET_NAME, name) ? errno : 0;
47 #define FMT "/proc/self/task/%u/comm"
48 char fname[sizeof (FMT) + 8];
49 sprintf (fname, FMT, (unsigned int) pd->tid);
51 int fd = open_not_cancel_2 (fname, O_RDWR);
52 if (fd == -1)
53 return errno;
55 int res = 0;
56 ssize_t n = TEMP_FAILURE_RETRY (write_not_cancel (fd, name, name_len));
57 if (n < 0)
58 res = errno;
59 else if (n != name_len)
60 res = EIO;
62 close_not_cancel_no_status (fd);
64 return res;