《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
程序簡介:這個程序演示了如何使用線程清理處理程序,並解釋了其中涉及的清理機制。
- //《APUE》程序11-4:線程清理處理程序
- #include <unistd.h>
- #include <stdio.h>
- #include <stdlib.h>
- #include <pthread.h>
-
- void cleanup(void *arg)
- {
- printf("cleanup: %s\n", (char*)arg);
- }
-
- void *thr_fn1(void *arg)
- {
- printf("thread 1 start\n");
- pthread_cleanup_push(cleanup, "thread 1 first handler");
- pthread_cleanup_push(cleanup, "thread 1 second handler");
- printf("thread 1 push complete\n");
- if( arg )
- return (void*)1;
- pthread_cleanup_pop(0);
- pthread_cleanup_pop(0);
- return (void*)1;
- }
-
- void *thr_fn2(void *arg)
- {
- printf("thread 2 start\n");
- pthread_cleanup_push(cleanup, "thread 2 first handler");
- pthread_cleanup_push(cleanup, "thread 2 second handler");
- printf("thread 2 push complete\n");
- if( arg )
- pthread_exit( (void*)2 );
- pthread_cleanup_pop(0);
- pthread_cleanup_pop(0);
- pthread_exit( void*)2 );
- }
-
- int main(void)
- {
- pthread_t tid1, tid2;
- void *tret;
-
- pthread_create(&tid1, NULL, thr_fn1, (void*)1);
- pthread_create(&tid2, NULL, thr_fn2, (void*)1);
- pthread_join(tid1, &tret);
- printf("thread 1 exit code\n", (int)tret);
- pthread_join(tid2, &tret);
- printf("thread 2 exit code\n", (int)tret);
- return 0;
- }
運行示例(紅色字體的為輸入):
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的調用匹配起來,否則程序通不過編譯。