首頁  >  文章  >  後端開發  >  在C語言中,pthread_self()的意思是取得目前執行緒的ID

在C語言中,pthread_self()的意思是取得目前執行緒的ID

WBOY
WBOY轉載
2023-09-18 15:21:041277瀏覽

在C語言中,pthread_self()的意思是取得目前執行緒的ID

這裡我們來看看C語言中pthread_self()的作用是什麼。 pthread_self()函數用於取得目前執行緒的ID。該函數可以唯一標識現有的執行緒。但如果有多個線程,並且有一個線程完成,那麼該 id 就可以重複使用。因此,對於所有正在運行的線程,id 都是唯一的。

範例

#include <stdio.h>
#include <stdlib.h>
#include <pthread.h>
void* func(void* p) {
   printf("From the function, the thread id = %d</p><p>", pthread_self()); //get current thread id
      pthread_exit(NULL);
   return NULL;
}
main() {
   pthread_t thread; // declare thread
   pthread_create(&thread, NULL, func, NULL);
   printf("From the main function, the thread id = %d</p><p>", thread);
   pthread_join(thread, NULL); //join with main thread
}

輸出

From the main function, the thread id = 1
From the function, the thread id = 1

以上是在C語言中,pthread_self()的意思是取得目前執行緒的ID的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文轉載於:tutorialspoint.com。如有侵權,請聯絡admin@php.cn刪除