如何在Linux C程序中获取pthread的线程ID?
在Linux C程序中,如何打印pthread库创建的线程的线程ID?
例如:我们可以通过getpid()
回答:
pthread_self()
函数将给出当前线程的线程ID。
pthread_t pthread_self(void);
该pthread_self()
函数返回调用线程的Pthread句柄。pthread_self()函数不会返回调用线程的整数线程。您必须使用pthread_getthreadid_np()
返回该线程的整数标识符。
注意:
pthread_id_np_t tid;tid = pthread_getthreadid_np();
比这些调用快得多,但是提供了相同的行为。
pthread_id_np_t tid;pthread_t self;
self = pthread_self();
pthread_getunique_np(&self, &tid);
以上是 如何在Linux C程序中获取pthread的线程ID? 的全部内容, 来源链接: utcz.com/qa/411074.html