歡迎來到Linux教程網
Linux教程網
Linux教程網
Linux教程網
您现在的位置: Linux教程網 >> UnixLinux >  >> Linux編程 >> Linux編程

《APUE》:打印線程ID

《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

程序簡介:以下這個程序創建一個線程並且打印進程ID,新線程的ID以及初始線程的線程的ID

  1. //《APUE》程序11-1:創建一個子線程並打印其線程ID   
  2. #include <unistd.h>   
  3. #include <stdio.h>   
  4. #include <stdlib.h>   
  5. #include <pthread.h>   
  6.   
  7. pthread_t ntid;  
  8.   
  9. void printfids(const char *s)  
  10. {  
  11.     //打印當前線程的進程ID和線程ID   
  12.     pid_t pid = getpid();  
  13.     pthread_t tid = pthread_self();  
  14.   
  15.     printf("%s pid %u tid %u (0x%x)\n",s, (unsigned int)pid,  
  16.         (unsigned int)tid, (unsigned int)tid);  
  17. }  
  18.   
  19. void *thr_fn(void *arg)  
  20. {  
  21.     printfids("new thread: ");  
  22.     return (void*)0;  
  23. }  
  24.   
  25. int main(void)  
  26. {  
  27.     pthread_create(&ntid, NULL, thr_fn, NULL);  
  28.     printfids("main thread: ");  
  29.     //讓主線程睡眠1秒鐘,這是保證子線程可以運行的一種權宜之計   
  30.     sleep(1);  
  31.     return 0;  
  32. }  

運行示例(紅色字體的為輸入):

www.linuxidc.com @ubuntu:~/code$ gcc temp.c -lpthread -o temp 
www.linuxidc.com @ubuntu:~/code$ ./temp
main thread:  pid 4153 tid 3078440640 (0xb77d46c0)
new thread:  pid 4153 tid 3078437744 (0xb77d3b70)

Copyright © Linux教程網 All Rights Reserved