pthread_self

头文件

#include

函数原型

pthread_t pthread_self(void);

函数作用:获得线程自身的ID。pthread_t的类型为unsigned long int,所以在打印的时候要使用%lu方式,否则将产生奇怪的结果。

功能

获取当前调用线程的 thread identifier(标识号).

你可能感兴趣的:(pthread_self)