add pthread_setname_np
authorFelix Janda <felix.janda@posteo.de>
Sat, 17 Sep 2016 00:54:00 +0000 (20:54 -0400)
committerRich Felker <dalias@aerifal.cx>
Thu, 20 Oct 2016 05:48:27 +0000 (01:48 -0400)
the thread name is displayed by gdb's "info threads".

include/pthread.h
src/thread/pthread_setname_np.c [new file with mode: 0644]

index 3d2e0c45d84abc83a98b128259f97fcd6c0d05f8..94ef919ca509a688f31ae4c1d94af3a0a699f7db 100644 (file)
@@ -214,6 +214,7 @@ struct cpu_set_t;
 int pthread_getaffinity_np(pthread_t, size_t, struct cpu_set_t *);
 int pthread_setaffinity_np(pthread_t, size_t, const struct cpu_set_t *);
 int pthread_getattr_np(pthread_t, pthread_attr_t *);
+int pthread_setname_np(pthread_t, const char *);
 int pthread_tryjoin_np(pthread_t, void **);
 int pthread_timedjoin_np(pthread_t, void **, const struct timespec *);
 #endif
diff --git a/src/thread/pthread_setname_np.c b/src/thread/pthread_setname_np.c
new file mode 100644 (file)
index 0000000..82d35e1
--- /dev/null
@@ -0,0 +1,26 @@
+#define _GNU_SOURCE
+#include <fcntl.h>
+#include <string.h>
+#include <unistd.h>
+#include <sys/prctl.h>
+
+#include "pthread_impl.h"
+
+int pthread_setname_np(pthread_t thread, const char *name)
+{
+       int fd, cs, status = 0;
+       char f[sizeof "/proc/self/task//comm" + 3*sizeof(int)];
+       size_t len;
+
+       if ((len = strnlen(name, 16)) > 15) return ERANGE;
+
+       if (thread == pthread_self())
+               return prctl(PR_SET_NAME, (unsigned long)name, 0UL, 0UL, 0UL) ? errno : 0;
+
+       snprintf(f, sizeof f, "/proc/self/task/%d/comm", thread->tid);
+       pthread_setcancelstate(PTHREAD_CANCEL_DISABLE, &cs);
+       if ((fd = open(f, O_WRONLY)) < 0 || write(fd, name, len) < 0) status = errno;
+       if (fd >= 0) close(fd);
+       pthread_setcancelstate(cs, 0);
+       return status;
+}