《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
- //《APUE》程序11-1:創建一個子線程並打印其線程ID
- #include <unistd.h>
- #include <stdio.h>
- #include <stdlib.h>
- #include <pthread.h>
-
- pthread_t ntid;
-
- void printfids(const char *s)
- {
- //打印當前線程的進程ID和線程ID
- pid_t pid = getpid();
- pthread_t tid = pthread_self();
-
- printf("%s pid %u tid %u (0x%x)\n",s, (unsigned int)pid,
- (unsigned int)tid, (unsigned int)tid);
- }
-
- void *thr_fn(void *arg)
- {
- printfids("new thread: ");
- return (void*)0;
- }
-
- int main(void)
- {
- pthread_create(&ntid, NULL, thr_fn, NULL);
- printfids("main thread: ");
- //讓主線程睡眠1秒鐘,這是保證子線程可以運行的一種權宜之計
- sleep(1);
- return 0;
- }
運行示例(紅色字體的為輸入):
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)