mirror of
https://github.com/Pithikos/C-Thread-Pool
synced 2024-11-21 21:21:23 +03:00
Merge pull request #105 from zlrs/fix/limit_thread_name_lenth_to_16
fix: limit thread name length to 16bytes
This commit is contained in:
commit
0c6dfd0818
4
thpool.c
4
thpool.c
@ -323,8 +323,8 @@ static void thread_hold(int sig_id) {
|
||||
static void* thread_do(struct thread* thread_p){
|
||||
|
||||
/* Set thread name for profiling and debuging */
|
||||
char thread_name[32] = {0};
|
||||
snprintf(thread_name, 32, "thread-pool-%d", thread_p->id);
|
||||
char thread_name[16] = {0};
|
||||
snprintf(thread_name, 16, "thpool-%d", thread_p->id);
|
||||
|
||||
#if defined(__linux__)
|
||||
/* Use prctl instead to prevent using _GNU_SOURCE flag and implicit declaration */
|
||||
|
Loading…
Reference in New Issue
Block a user