線程的處理函數pthread_cleanup_push/pthread_cleanup_pop

因爲存在線程可能會由於一些異常狀況終止執行,從而致使它的一些資源得不到釋放。須要一個機制來簡化資源釋放的編程。 編程

調用pthread_cleanup_push()來壓入清理函數棧,屢次調用造成一個函數鏈,在執行時與壓棧的相反順序彈出。 函數

只有一下幾種狀況註冊清理函數才被執行: spa

   1)調用pthread_exit。
   2)做爲對取消線程請求(pthread_cancel)的響應。
   3)以非0參數調用pthread_cleanup_pop。 線程

 

用法: 資源

#include <pthread.h> string

void pthread_cleanup_push(void (*rtn)(void *),void *arg); it

 

注意: io

1)若是線程只是因爲簡單的返回而終止的,則清除函數不會被調用。 thread

2)若是pthread_cleanup_pop被傳遞0參數,則清除函數不會被調用,可是會清除處於棧頂的清理函數。 test

 

例子

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <error.h>
#include <fcntl.h>
#include <sys/mman.h>
#include <unistd.h>
#include <pthread.h>
       
void cleanup()
{
    printf("clean up\n");
}
void *test_cancel(void)
{
     pthread_cleanup_push(cleanup,NULL);
     printf("test clean up\n");
     while(1)
     {
           printf("test message\n");
       sleep(1);
     }
     pthread_cleanup_pop(1);
}

int main(int argc,char *argv[])     {      pthread_t tid;      pthread_create(&tid,NULL,(void *)test_cancel,NULL);      sleep(5);      pthread_cancel(tid);      pthread_join(tid,NULL); }

相關文章
相關標籤/搜索