summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorFelix Janda <felix.janda@posteo.de>2016-09-16 20:54:00 -0400
committerRich Felker <dalias@aerifal.cx>2016-10-20 01:48:27 -0400
commit8fb28b0b3e7a5e958fb844722a4b2ef9bc244af1 (patch)
tree87e0d423b4fffd636fd305667802243a12dd88f7 /include
parent3ca2d2d4aef910663785fe232d7d2127a22d8a84 (diff)
downloadmusl-8fb28b0b3e7a5e958fb844722a4b2ef9bc244af1.tar.gz
add pthread_setname_np
the thread name is displayed by gdb's "info threads".
Diffstat (limited to 'include')
-rw-r--r--include/pthread.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/pthread.h b/include/pthread.h
index 3d2e0c45..94ef919c 100644
--- a/include/pthread.h
+++ b/include/pthread.h
@@ -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