關於 Linux 下的線程函數未定義問題
阿新 • • 發佈:2018-09-12
oops 第一個 loop 編譯 rar cts lin 結果 def
#include<pthread.h> #include<stdio.h> #include<stdlib.h> static int counter=0; #define loops 10000000 static void* thread(void *unused) { int i; for(i=0;i<loops;++i) { ++counter; } return NULL; } int main() { pthread_t t1,t2; pthread_create(&t1,NULL,thread,NULL); pthread_create(&t2,NULL,thread,NULL); pthread_join(t1,NULL); pthread_join(t2,NULL); printf("counter is %d by thread\n",counter); return 0;
}
源文件名為 t.c 編譯命令 為 gcc -o t -g t.c
無法編譯 並提示
原因是 因為pthread庫不是Linux系統默認的庫
In general, libraries should follow sources and objects on command line, and -lpthread is not an "option", it‘s a library specification.
On a system with only libpthread.a installed,
所以正確的命令如下
gcc -pthread -o t t.c
產生輸出
counter is 20000000 by thread
以上代碼實現了對同一個全局變量的自加運算 循環次數為一千萬次。但該例子是一個線程不安全的代碼
而在 windows 下 運行的結果為
之所以選擇一千萬 是為了保證第一個線程不要再第二個線程開始前就結束運行。
關於 Linux 下的線程函數未定義問題