linux 下获取线程ID

linux多线程环境下gettid() pthread_self() 两个函数都获得线程ID,但这2个ID有所不同


gettid是内核中的线程的ID:
POSIX thread ID可以在一个进程内唯一标识一个线程,但如果放到系统范围内的话就得用gettid了。

#include 	// 需要包含这个头文件	
inline pid_t 	my_gettid()		// gettid是内核中的线程的ID
{
     return syscall(SYS_gettid);  /*这才是内涵*/
}


pthread_self是POSIX thread ID
创建线程函数返回的第一个参数就是  pthread_self()
int pthread_create(pthread_t *thread, const pthread_attr_t *attr,void *(*start_routine) (void *), void *arg); 
同时 pthread_detach,pthread_cancel等函数是需要POSIX thread id为参数的


总结:

线程库实际上由两部分组成:内核的线程支持+用户态的库支持(glibc),Linux在早期内核不支持线程的时候glibc就在库中(用户态)以纤程(就是用户态线程)的方式支持多线程了,POSIX thread只要求了用户编程的调用接口对内核接口没有要求。linux上的线程实现就是在内核支持的基础上以POSIX thread的方式对外封装了接口,所以才会有两个ID的问题。






你可能感兴趣的:(linux)