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

《APUE》:線程清理處理程序

《Unix環境高級編程》這本書附帶了許多短小精美的小程序,我在閱讀此書的時候,將書上的代碼按照自己的理解重寫了一遍(大部分是抄書上的),加深一下自己的理解(純看書太困了,呵呵)。此例子在Ubuntu 10.04上測試通過。

相關鏈接

  • 《UNIX環境高級編程》(第二版)apue.h的錯誤 http://www.linuxidc.com/Linux/2011-04/34662.htm
  • Unix環境高級編程 源代碼地址 http://www.linuxidc.com/Linux/2011-04/34826.htm

程序簡介:這個程序演示了如何使用線程清理處理程序,並解釋了其中涉及的清理機制。

  1. //《APUE》程序11-4:線程清理處理程序   
  2. #include <unistd.h>   
  3. #include <stdio.h>   
  4. #include <stdlib.h>   
  5. #include <pthread.h>   
  6.   
  7. void cleanup(void *arg)  
  8. {  
  9.     printf("cleanup: %s\n", (char*)arg);  
  10. }  
  11.   
  12. void *thr_fn1(void *arg)  
  13. {  
  14.     printf("thread 1 start\n");  
  15.     pthread_cleanup_push(cleanup, "thread 1 first handler");  
  16.     pthread_cleanup_push(cleanup, "thread 1 second handler");  
  17.     printf("thread 1 push complete\n");  
  18.     if( arg )  
  19.         return (void*)1;  
  20.     pthread_cleanup_pop(0);  
  21.     pthread_cleanup_pop(0);  
  22.     return (void*)1;  
  23. }  
  24.   
  25. void *thr_fn2(void *arg)  
  26. {  
  27.     printf("thread 2 start\n");  
  28.     pthread_cleanup_push(cleanup, "thread 2 first handler");  
  29.     pthread_cleanup_push(cleanup, "thread 2 second handler");  
  30.     printf("thread 2 push complete\n");  
  31.     if( arg )  
  32.         pthread_exit( (void*)2 );  
  33.     pthread_cleanup_pop(0);  
  34.     pthread_cleanup_pop(0);  
  35.     pthread_exit( void*)2 );  
  36. }  
  37.   
  38. int main(void)  
  39. {  
  40.     pthread_t tid1, tid2;  
  41.     void *tret;  
  42.   
  43.     pthread_create(&tid1, NULL, thr_fn1, (void*)1);  
  44.     pthread_create(&tid2, NULL, thr_fn2, (void*)1);  
  45.     pthread_join(tid1, &tret);  
  46.     printf("thread 1 exit code\n", (int)tret);  
  47.     pthread_join(tid2, &tret);  
  48.     printf("thread 2 exit code\n", (int)tret);  
  49.     return 0;  
  50. }  

運行示例(紅色字體的為輸入):

www.linuxidc.com @ubuntu:~/code$ gcc temp.c -lpthread -o temp
www.linuxidc.com @ubuntu:~/code$ ./temp

thread 1 start
thread 1 push complete
thread 2 start
thread 2 push complete
cleanup: thread 2 second handler
cleanup: thread 2 first handler
thread 1 exit code
thread 2 exit code

注解:
1:兩個子線程都正確啟動和退出了
2:如果線程是通過從它的啟動線程中返回而終止的話,那麼它的清理處理函數就不會被調用。
3:必須把pthread_cleanup_push的調用和pthread_cleanup_pop的調用匹配起來,否則程序通不過編譯。

Copyright © Linux教程網 All Rights Reserved