歡迎來到Linux教程網
Linux教程網
Linux教程網
Linux教程網
您现在的位置: Linux教程網 >> UnixLinux >  >> Linux編程 >> Linux編程

POSIX的pthread_join

join

  • join是三種同步線程的方式之一。另外兩種分別是互斥鎖(mutex)和條件變量(condition variable)。
  • 調用pthread_join()將阻塞自己,一直到要等待加入的線程運行結束。
  • 可以用pthread_join()獲取線程的返回值。
  • 一個線程對應一個pthread_join()調用,對同一個線程進行多次pthread_join()調用是邏輯錯誤。

join or detach

  • 線程分兩種:一種可以join,另一種不可以。該屬性在創建線程的時候指定。
  • joinable線程可在創建後,用pthread_detach()顯式地分離。但分離後不可以再合並。該操作不可逆。
  • 為了確保移植性,在創建線程時,最好顯式指定其join或detach屬性。似乎不是所有POSIX實現都是用joinable作默認。
  1. #include <pthread.h>   
  2. #include <stdio.h>   
  3. #include <stdlib.h>   
  4. #define NUM_THREADS 4   
  5.   
  6. void *BusyWork(void *t)  
  7. {  
  8.     double result=0.0;  
  9.     long tid = (long)t;  
  10.     printf("Thread %ld starting...\n",tid);  
  11.     for (int i=0; i<1000000; i++)  
  12.     {  
  13.         result = result + sin(i) * tan(i);  
  14.     }  
  15.     printf("Thread %ld done. Result = %e\n",tid, result);  
  16.     pthread_exit((void*) t);  
  17. }  
  18.   
  19. int main (int argc, char *argv[])  
  20. {  
  21.     pthread_t thread[NUM_THREADS];  
  22.     pthread_attr_t attr;  
  23.   
  24.     // 1/4: init   
  25.     pthread_attr_init(&attr);  
  26.     // 2/4: explicitly specify as joinable or detached   
  27.     pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_JOINABLE);  
  28.   
  29.     int rc;  
  30.     long t;  
  31.     for(t=0; t<NUM_THREADS; t++)  
  32.     {  
  33.         printf("Main: creating thread %ld\n", t);  
  34.         // 3/4: use thread attribute   
  35.         rc = pthread_create(&thread[t], &attr, BusyWork, (void *)t);  
  36.         if (rc) {  
  37.             printf("ERROR; return code from pthread_create() is %d\n", rc);  
  38.             exit(-1);  
  39.         }  
  40.     }  
  41.   
  42.     // 4/4: release thread attribute   
  43.     pthread_attr_destroy(&attr);  
  44.   
  45.     void *status;  
  46.     for(t=0; t<NUM_THREADS; t++)  
  47.     {  
  48.         rc = pthread_join(thread[t], &status);  
  49.         if (rc) {  
  50.             printf("ERROR; return code from pthread_join() is %d\n", rc);  
  51.             exit(-1);  
  52.         }  
  53.         printf("Main: completed join with thread %ld having a status of %ld\n",t,(long)status);  
  54.     }  
  55.   
  56.     printf("Main: program completed. Exiting.\n");  
  57.     return 0;  
  58. }  
Copyright © Linux教程網 All Rights Reserved