91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

unix 線程同步之 條件變量 及 互斥鎖 測試例子

發布時間:2020-03-11 14:20:53 來源:網絡 閱讀:585 作者:xieyihua 欄目:系統運維
  1. #include <pthread.h> 
  2. #include <stdio.h> 
  3. #include <stdlib.h> 
  4. #include <sys/time.h> 
  5. #include <stdbool.h> 
  6. #include <errno.h> 
  7. #include <unistd.h> 
  8.  
  9. # define satisfy true 
  10. # define unsatisfy false 
  11.  
  12. //pthread_mutex_t mut_loc = PTHREAD_MUTEX_INITIALIZER;//所為靜態初始化為PTHREAD_MUTEX_INITIALIZER為一個常量,在全局中進行賦值 
  13.  
  14. pthread_mutex_t mut_loc; 
  15. pthread_cond_t thd_con; 
  16. struct timespec tsp; 
  17. bool condition = unsatisfy
  18.  
  19.  
  20. void maketimeout(struct timespec *tsp, int add_sec)//設置超時函數,當前的時間再加上需要等待時候,因為pthread_cond_timedwait只認識當前時間格式 
  21.     struct timeval now; 
  22.     gettimeofday(&now,NULL);//獲取當前時間 
  23.     tsp->tv_sec = now.tv_sec; 
  24.     tsp->tv_nsec = now.tv_usec *1000; 
  25.     tsp->tv_sec += add_sec; //等待20秒 
  26.  
  27. void thread0(void) 
  28.     int ret; 
  29.      
  30.     if(0 != pthread_mutex_lock(&mut_loc))//上鎖 
  31.     { 
  32.         perror("pthread_mutex_lock_0\n"); 
  33.         return; 
  34.     } 
  35.      
  36.     if(condition == unsatisfy) 
  37.     { 
  38.         fputs("條件不滿足,重新等待條件!!\n",stdout); 
  39.         maketimeout(&tsp, 2);//設置超時時間2秒 
  40.          
  41.         //等待條件,并且解鎖,線程轉到等待隊列中,如果條件滿足信號收到,即會進行上鎖; 
  42.         //線程是處于一種叫做無競爭方式,由于條件未滿足情況下不會與其它線程競爭鎖,只有條件滿足后才會進行競爭 
  43.         ret = pthread_cond_timedwait(&thd_con,&mut_loc,&tsp); 
  44.         if(ETIMEDOUT == ret) 
  45.         { 
  46.             fputs("直到超時條件都不滿足,重新等待條件!!\n",stdout); 
  47.         } 
  48.         else if(0 == ret) 
  49.         { 
  50.             fputs("線程0在等待時候獲得條件滿足!\n",stdout); 
  51.         } 
  52.         else 
  53.         { 
  54.             perror("other error for pthread_cond_timedwait \n"); 
  55.             pthread_exit((void *)1);                 
  56.         } 
  57.         if(condition == satisfy) 
  58.         { 
  59.             fputs("0_條件滿足!!\n",stdout); 
  60.             condition = unsatisfy
  61.         } 
  62.     } 
  63.     else if(condition == satisfy) 
  64.     { 
  65.         fputs("1_條件滿足!!\n",stdout); 
  66.         condition = unsatisfy
  67.     } 
  68.     else 
  69.     { 
  70.         perror("error condition\n "); 
  71.         pthread_exit((void *)1);     
  72.     } 
  73.  
  74.     if(0 != pthread_mutex_unlock(&mut_loc)) 
  75.     { 
  76.         perror("pthread_mutex_lock_0\n"); 
  77.         return; 
  78.     } 
  79.      
  80.     pthread_exit((void *)0);     
  81.  
  82. void thread1(void) 
  83.     int ret;     
  84.  
  85.     ret = pthread_mutex_trylock(&mut_loc); 
  86.      
  87.     if(EBUSY == ret) 
  88.     { 
  89.         fputs("鎖被線程0所占有!\n",stdout); 
  90.     } 
  91.     else if(0 == ret)  
  92.     {    
  93.         if(0 != pthread_cond_signal(&thd_con)) 
  94.         { 
  95.             perror("pthread_cond_signal\n"); 
  96.             pthread_exit((void *)1); 
  97.         } 
  98.         condition = satisfy
  99.         fputs("線程1使條件滿足\n",stdout); 
  100.         if(0 != pthread_mutex_unlock(&mut_loc)) 
  101.         { 
  102.             perror("pthread_mutex_lock_1\n"); 
  103.             pthread_exit((void *)1); 
  104.         }                
  105.     } 
  106.     else 
  107.     { 
  108.         perror("other errors for pthread_mutex_lock_1\n"); 
  109.         pthread_exit((void *)1); 
  110.     } 
  111.     pthread_exit((void *)0); 
  112.  
  113. int main(int argc, char* argv[]) 
  114.     pthread_t thd0, thd1; 
  115.  
  116.     if(0 != pthread_mutex_init(&mut_loc,NULL))// pthread_mutex_init 與 pthread_mutex_destroy配對使用,因為其是動態即使用malloc來產生 
  117.     { 
  118.         perror("pthread_mutex_init\n"); 
  119.         exit(1);         
  120.     } 
  121.     if(0 != pthread_cond_init(&thd_con,NULL))// pthread_cond_init 與 pthread_cond_destroy配對使用,因為其是動態即使用malloc來產生 
  122.     { 
  123.         perror("pthread_cond_init\n"); 
  124.         exit(1);     
  125.     } 
  126.     if(0 != pthread_create(&thd0,NULL,(void*)thread0,NULL))//創建線程0 
  127.     { 
  128.         perror("pthread_create_0\n"); 
  129.         exit(1); 
  130.     } 
  131.      
  132.     sleep(1);//讓線程0先執行 
  133.      
  134.     if(0 != pthread_create(&thd1,NULL,(void*)thread1,NULL))//創建線程1 
  135.     { 
  136.         perror("pthread_create_0\n"); 
  137.         exit(1); 
  138.     } 
  139.      
  140.     if(0 != pthread_join(thd1,NULL))//如果線程牌分離屬性此函數不可用,如果線程1不退出,則處于阻塞狀態 
  141.     { 
  142.         perror("pthread_join_0\n"); 
  143.         exit(1); 
  144.     } 
  145.     if(0 != pthread_join(thd0,NULL))//如果線程牌分離屬性此函數不可用,如果線程0不退出,則處于阻塞狀態 
  146.     { 
  147.         perror("pthread_join_1\n"); 
  148.         exit(1); 
  149.     } 
  150.      
  151.     if(0 != pthread_cond_destroy(&thd_con))//與pthread_cond_init配對使用 
  152.     { 
  153.         perror("pthread_cond_destory\n"); 
  154.         exit(1);     
  155.     }    
  156.     if(0 != pthread_mutex_destroy(&mut_loc))//與pthread_mutex_init配對使用 
  157.     { 
  158.         perror("pthread_mutex_init\n"); 
  159.         exit(1);         
  160.     } 
  161.      
  162.     return 0; 

 

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

龙南县| 神农架林区| 阿拉善盟| 克什克腾旗| 高平市| 富民县| 吉安县| 贵定县| 苏州市| 郯城县| 苍溪县| 岗巴县| 厦门市| 郴州市| 绥德县| 嘉义市| 靖江市| 仙游县| 文登市| 博爱县| 桂阳县| 横峰县| 上犹县| 射阳县| 交口县| 泗洪县| 承德市| 镇沅| 白水县| 崇左市| 洛阳市| 东平县| 兴安盟| 北川| 德格县| 南漳县| 尤溪县| 贡山| 绵阳市| 黑河市| 故城县|