当前位置:   article > 正文

linux 线程创建 pthread_create函数 获取线程id_pthread_create创建线程时设置线程编号

pthread_create创建线程时设置线程编号

函数原型:

#include<pthread.h>

int  pthread_create(pthread_t*thread,pthread_attr_t   *attr,

void * (*start_routine)(void *arg), void *arg);

 

参数

  第一个参数为指向线程标识符的指针。

  第二个参数用来设置线程属性。

  第三个参数是线程运行函数的地址。

  最后一个参数是运行函数的参数。

 

返回值:

若成功则返回0,否则返回出错编号


代码:

  1. #include <stdio.h>
  2. #include <pthread.h>
  3. #include <sys/syscall.h>
  4. void* Func_pth1()
  5. {
  6. printf("child gettid = %u\n", syscall(SYS_gettid));
  7. printf("child pthread_self= %u\n", (unsigned int)pthread_self());
  8. //printf("child thread tid = %u\n", pthread_self());
  9. }
  10. int main()
  11. {
  12. int iRet = 0;
  13. pthread_t pth1;
  14. printf("main gettid = %u\n", syscall(SYS_gettid));
  15. printf("main pthread_self = %u\n", (unsigned int)pthread_self());
  16. iRet = pthread_create(&pth1, NULL, (void*)Func_pth1, NULL);
  17. if(iRet)
  18. {
  19. printf("create pthread fail\n");
  20. }
  21. printf("---pthread_t = %u\n", (unsigned int)pth1);
  22. pthread_join(pth1, NULL);
  23. return 0;
  24. }

运行结果:

main gettid = 5100
main pthread_self = 3078461120
---pthread_t = 3078458224
child gettid = 5101
child pthread_self= 3078458224


分析:

pthread_self()是POSIX的实现,它的返回值是pthread_t,pthread_t在linux中实际是无符号长整型,即unsigned long。gettid是系统调用,它的返回值是pid_t,在linux上是一个无符号整型。glibc并没有实现该函数,只能通过Linux的系统调用syscall来获取。

pthread_self是为了区分同一进程中不同的线程, 是由thread的实现来决定的。pthread_self返回的是同一个进程中各个线程之间的标识号,对于这个进程内是唯一的,而不同进程中,每个线程返回的pthread_self可能返回的是一样的。而gettid获取的线程id和pid是有关系的,因为在linux中线程其实也是一个进程(clone),所以它的线程ID也是pid_t类型。在一个进程中,主线程的线程id和进程id是一样的,该进程中其他的线程id则在linux系统内是唯一的,gettid是不可移植的。

3  Linux中的POSIX线程库实现的线程其实也是一个进程(LWP),只是该进程与主进程(启动线程的进程)共享一些资源而已,比如代码段,数据段等。

有时候我们可能需要知道线程的真实pid。比如进程P1要向另外一个进程P2中的某个线程发送信号时,既不能使用P2的pid,更不能使用线程的pthread id,而只能使用该线程的真实pid,称为tid。



声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Cpp五条/article/detail/181978
推荐阅读
相关标签
  

闽ICP备14008679号