pthread_key_create第一個參數為指向一個鍵值的指針,第二個參數指明了一個destructor函式,如果這個參數不為空,那么當每個執行緒結束時,系統將調用這個函式來釋放綁定在這個鍵上的記憶體塊。
基本介紹
- 中文名:pthread_key_create
- 頭檔案:#include <pthread.h>
- 函式原型:int pthread_key_
- 參數說明:第一個參數為指向一個鍵值的指針
pthread_key_create第一個參數為指向一個鍵值的指針,第二個參數指明了一個destructor函式,如果這個參數不為空,那么當每個執行緒結束時,系統將調用這個函式來釋放綁定在這個鍵上的記憶體塊。
pthread_key_create第一個參數為指向一個鍵值的指針,第二個參數指明了一個destructor函式,如果這個參數不為空,那么當每個執行緒結束時,系統將調用這個函式來釋放綁定在...
pthread_cond_wait(): 等待條件變數的特殊條件發生 Thread-local storage(或者以Pthreads術語,稱作執行緒特有數據): pthread_key_create(): 分配用於標識進程中執行緒特...
頭檔案: #include <pthread.h> 函式原型: int pthread_key_delete(pthread_key_t key); 作用: 註銷一個TSD,這個函式並不檢查當前是否有執行緒正使用該TSD,也不...
pthread_key_create(3)). Finally, execution of the callingthread is stopped.The retval argument is the return value of the thread. It...
int pthread_key_create(pthread_key_t *key, void (*destructor)(void*));int pthread_key_delete(pthread_key_t key);void *pthread_getspecific(pthread_...
int pthread_key_create(pthread_key_t *key, void (*destructor)(void*));int pthread_key_delete(pthread_key_t key);void *pthread_getspecific(pthread_...
10.2.4 pthread_detach() 10.2.5 pthread_exit() 10.2.6 pthread_cancel() 10.3 執行緒間通信 10.3.1 pthread_once() 10.3.2 pthread_key_create()...