pthread_setname_np_setpthreadname-CSDN博客
#define _GNU_SOURCE
#include <pthread.h>
int pthread_setname_np(pthread_t thread, const char *name);
int pthread_getname_np(pthread_t thread, char *name, size_t len);
pthread_setname_np(thread, name_s.c_str());
线程设置名称,其长度限制为 16 个字符(含\0在内)
成功时,这些函数返回 0; 出错时,它们返回一个非零错误号
可以通过命令cat /proc/pid/task/[tid]/comm来查看线程名称