diff options
author | Felix Janda <felix.janda@posteo.de> | 2016-09-16 20:54:00 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2016-10-20 01:48:27 -0400 |
commit | 8fb28b0b3e7a5e958fb844722a4b2ef9bc244af1 (patch) | |
tree | 87e0d423b4fffd636fd305667802243a12dd88f7 /include | |
parent | 3ca2d2d4aef910663785fe232d7d2127a22d8a84 (diff) | |
download | musl-8fb28b0b3e7a5e958fb844722a4b2ef9bc244af1.zip musl-8fb28b0b3e7a5e958fb844722a4b2ef9bc244af1.tar.gz musl-8fb28b0b3e7a5e958fb844722a4b2ef9bc244af1.tar.bz2 |
add pthread_setname_np
the thread name is displayed by gdb's "info threads".
Diffstat (limited to 'include')
-rw-r--r-- | include/pthread.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/pthread.h b/include/pthread.h index 3d2e0c4..94ef919 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 |