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

溫馨提示×

溫馨提示×

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

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

unix 線程回調函數使用-pthread_cleanup_push && pthread_cleanup_pop

發布時間:2020-10-05 22:58:21 來源:網絡 閱讀:5772 作者:xieyihua 欄目:系統運維
  1. #if 0 
  2. 線程結束時清理函數 
  3. pthread_cleanup_push(),應該在線程開始的時候盡快執行初始化 
  4. pthread_cleanup_pop(),當遇到以下三種各件會自動調用該函數,不需要PC執行到此函數 
  5. 1.調用pthread_exit() 
  6. 2.響應取消請求例如pthread_cancel() 
  7. 3.當pthread_cleanup_pop(arg)參數arg為非0時會線程退出時自動執行 
  8.  
  9. 如果沒有以上三種情況,則不會執行; 
  10. #endif 
  11.  
  12. #include <pthread.h> 
  13. #include <stdio.h> 
  14. #include <stdlib.h> 
  15. #include <unistd.h> 
  16. #include <semaphore.h> 
  17.  
  18. sem_t sm0,sm1,sm2,sm3; //信號量定義 信號量為控制線程的執行 
  19.  
  20. void ret_fn(void*str)//線程退出調用的回調函數 
  21.     fputs(str,stdout); 
  22.  
  23.  
  24. void thread0(void) 
  25.     if(0 != sem_wait(&sm0))//信號量進行阻塞 
  26.     { 
  27.         perror("sem_wait_0"); 
  28.     } 
  29.      
  30.     char *str = "thead0_return_FN is runing\n"
  31.     pthread_cleanup_push(ret_fn,str);//將回調函數入棧 
  32.     fputs("thread0 is runing\n",stdout); 
  33.     pthread_cleanup_pop(0);//將回調函數出棧,當遇到特定的條件會自動調用,不需要PC指到此才執行 
  34.     return; 
  35. void thread1(void) 
  36.     if(0 != sem_wait(&sm1)) 
  37.     { 
  38.         perror("sem_wait_1"); 
  39.     } 
  40.     char *str = "thead1_return_FN is runing\n"
  41.     pthread_cleanup_push(ret_fn,str); 
  42.     fputs("thread1 is runing\n",stdout); 
  43.     pthread_exit((void*)1); 
  44.     pthread_cleanup_pop(0); 
  45.  
  46. void thread2(void) 
  47.     if(0 != sem_wait(&sm2)) 
  48.     { 
  49.         perror("sem_wait_2"); 
  50.     } 
  51.     char *str = "thead2_return_FN is runing\n"
  52.     pthread_cleanup_push(ret_fn,str); 
  53.     fputs("thread2 is runing\n",stdout); 
  54.     pthread_cleanup_pop(1); 
  55.     fputs("線程結束才會執行pthread_cleanup_pop\n",stdout);//線程結束才會執行pthread_cleanup_pop 
  56. void thread3(void) 
  57.     char *str = "thead3_return_FN is runing\n"
  58.     pthread_cleanup_push(ret_fn,str); 
  59.     if(0 != sem_wait(&sm3)) 
  60.     { 
  61.         perror("sem_wait_3"); 
  62.     } 
  63.     fputs("thread3 is runing\n",stdout); 
  64.     usleep(100);// 讓主線程中的pthread_cancel可以執行 
  65.     pthread_cleanup_pop(0); 
  66.  
  67.  
  68. int main(void) 
  69.  
  70.     pthread_t thd0,thd1,thd2,thd3; 
  71.      
  72.     if(0 != sem_init(&sm0,0,0))//初始化信號量 
  73.     { 
  74.         perror("sem_init_0"); 
  75.         exit(1); 
  76.     } 
  77.     if(0 != sem_init(&sm1,0,0)) 
  78.     { 
  79.         perror("sem_init_0"); 
  80.         exit(1); 
  81.     } 
  82.     if(0 != sem_init(&sm2,0,0)) 
  83.     { 
  84.         perror("sem_init_0"); 
  85.         exit(1); 
  86.     } 
  87.     if(0 != sem_init(&sm3,0,0)) 
  88.     { 
  89.         perror("sem_init_0"); 
  90.         exit(1); 
  91.     } 
  92.      
  93.     if(0 != pthread_create(&thd0,NULL,(void*)thread0,NULL))//創建線程 
  94.     { 
  95.         perror("pthread_create_0\n"); 
  96.         exit(1); 
  97.     } 
  98.     if(0 != pthread_create(&thd1,NULL,(void*)thread1,NULL)) 
  99.     { 
  100.         perror("pthread_create_1\n"); 
  101.         exit(1); 
  102.     } 
  103.     if(0 != pthread_create(&thd2,NULL,(void*)thread2,NULL)) 
  104.     { 
  105.         perror("pthread_create_2\n"); 
  106.         exit(1); 
  107.     } 
  108.     if(0 != pthread_create(&thd3,NULL,(void*)thread3,NULL)) 
  109.     { 
  110.         perror("pthread_create_3\n"); 
  111.         exit(1); 
  112.     } 
  113.     unsigned char status = 0xF;//控制重復測試掩碼 
  114.      
  115.     while(1) 
  116.     { 
  117.         fputs("請輸入測試選項:0(沒有調用回調函數),1(pthread_exit),2(pthread_cancel),3(參數非0 pthread_cleanup_pop)\n",stdout); 
  118.         int in; 
  119.         scanf("%d",&in); 
  120.         switch(in) 
  121.         { 
  122.             case 0: 
  123.                 { 
  124.                     if(!(status & 0x1)) 
  125.                     { 
  126.                         fputs("這個項目已測試過,請選擇其它,謝謝\n",stdout); 
  127.                         break; 
  128.                     } 
  129.                     if(0 != sem_post(&sm0))//激活信號量,讓子線程THD0繼續執行 
  130.                     { 
  131.                         perror("sem_post_0\n"); 
  132.                     } 
  133.                     status &= 0xe; 
  134.                     break; 
  135.                 } 
  136.             case 1: 
  137.                 { 
  138.                     if(!(status & 0x2)) 
  139.                     { 
  140.                         fputs("這個項目已測試過,請選擇其它,謝謝\n",stdout); 
  141.                         break; 
  142.                     } 
  143.                     if(0 != sem_post(&sm1)) 
  144.                     { 
  145.                         perror("sem_post_1\n"); 
  146.                     } 
  147.                     status &= 0xc; 
  148.                     break; 
  149.                 }        
  150.             case 2: 
  151.                 { 
  152.                     if(!(status & 0x4)) 
  153.                     { 
  154.                         fputs("這個項目已測試過,請選擇其它,謝謝\n",stdout); 
  155.                         break; 
  156.                     } 
  157.                     if(0 != sem_post(&sm2)) 
  158.                     { 
  159.                         perror("sem_post_2\n"); 
  160.                     } 
  161.                     status &= 0xb; 
  162.                     break; 
  163.                 } 
  164.             case 3: 
  165.                 { 
  166.                     if(!(status & 0x8)) 
  167.                     { 
  168.                         fputs("這個項目已測試過,請選擇其它,謝謝\n",stdout); 
  169.                         break; 
  170.                     } 
  171.                     if(0 != sem_post(&sm3)) 
  172.                     { 
  173.                         perror("sem_post_3\n"); 
  174.                     } 
  175.                     pthread_cancel(thd3); 
  176.                     status &= 0x7; 
  177.                     break; 
  178.                 } 
  179.             default: break; 
  180.         }    
  181.         sleep(1); 
  182.     } 
  183.  
  184.      
  185.     return 0; 

 

向AI問一下細節

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

AI

临夏市| 陕西省| 海安县| 大荔县| 东光县| 饶阳县| 栾城县| 夏河县| 章丘市| 罗源县| 宁陕县| 南部县| 玉屏| 清丰县| 额济纳旗| 丹巴县| 大兴区| 潮安县| 葵青区| 金坛市| 项城市| 凌云县| 秦安县| 海原县| 汉沽区| 板桥市| 汶上县| 醴陵市| 长沙县| 高淳县| 赤壁市| 晋江市| 大化| 阿克陶县| 甘泉县| 永丰县| 景宁| 康平县| 平安县| 临沭县| 桑日县|