pthread_self

pthread_self

pthread_self是一種函式,功能是獲得執行緒自身的ID。

頭檔案

#include <pthread.h>

函式原型

pthread_t pthread_self(void);

函式作用:獲得執行緒自身的ID。pthread_t的類型為unsigned long int,所以在列印的時候要使用%lu方式,否則顯示結果出問題。

功能

獲取當前調用執行緒的 thread identifier(標識號).

示例

編譯:

$ gcc thread.c -o thread -lpthread

pthread_self pthread_self

相關詞條

熱門詞條

聯絡我們