mirror of
https://git.musl-libc.org/git/musl
synced 2025-01-23 06:32:05 +03:00
add pthread_setname_np
the thread name is displayed by gdb's "info threads".
This commit is contained in:
parent
3ca2d2d4ae
commit
8fb28b0b3e
@ -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
|
||||
|
26
src/thread/pthread_setname_np.c
Normal file
26
src/thread/pthread_setname_np.c
Normal file
@ -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;
|
||||
}
|
Loading…
Reference in New Issue
Block a user