資源描述:
《linux多線程實(shí)例解析》由會(huì)員上傳分享,免費(fèi)在線閱讀,更多相關(guān)內(nèi)容在教育資源-天天文庫(kù)。
1、Linux多線程編程實(shí)例解析Linux系統(tǒng)下的多線程遵循POSIX線程接口,稱為pthread。編寫(xiě)Linux下的多線程程序,需要使用頭文件pthread.h,連接時(shí)需要使用庫(kù)libpthread.a。順便說(shuō)一下,Linux下pthread的實(shí)現(xiàn)是通過(guò)系統(tǒng)調(diào)用clone()來(lái)實(shí)現(xiàn)的。clone()是Linux所特有的系統(tǒng)調(diào)用,它的使用方式類似fork,關(guān)于clone()的詳細(xì)情況,有興趣的讀者可以去查看有關(guān)文檔說(shuō)明。下面我們展示一個(gè)最簡(jiǎn)單的多線程程序pthread_create.c?! ∫粋€(gè)重要的線程創(chuàng)建函數(shù)原型:#includeintpth
2、read_create(pthread_t*restricttidp,constpthread_attr_t*restrictattr,void*(*start_rtn)(void),void*restrictarg); 返回值:若是成功建立線程返回0,否則返回錯(cuò)誤的編號(hào) 形式參數(shù): pthread_t*restricttidp要?jiǎng)?chuàng)建的線程的線程id指針 constpthread_attr_t*restrictattr創(chuàng)建線程時(shí)的線程屬性 void*(start_rtn)(void)返回值是void類型的指針函數(shù) void*restrictargsta
3、rt_rtn的行參 例程1: 功能:創(chuàng)建一個(gè)簡(jiǎn)單的線程 程序名稱:pthread_create.c/**************************************************************************** **Name:pthread_create.c **UsedtostudythemultithreadprogramminginLinuxOS **Author:zeickey **Date:2006/9/16 **Copyright(c)2006,AllRightsReserved!*******
4、**********************************************************************/ #include #include18 void*myThread1(void) { inti; for(i=0;i<100;i++) { printf("Thisisthe1stpthread,createdbyzieckey."); sleep(1);//Letthisthreadtosleep1second,andthencontinuetorun }
5、 } void*myThread2(void) { inti; for(i=0;i<100;i++) { printf("Thisisthe2stpthread,createdbyzieckey."); sleep(1); } } intmain() { inti=0,ret=0; pthread_tid1,id2; ret=pthread_create(&id1,NULL,(void*)myThread1,NULL);//創(chuàng)建成功返回0,否則非0 if(ret)//表達(dá)式值為0,按“假”處理;非0時(shí)按“真”處理?! pri
6、ntf("Createpthreaderror!"); return1; } ret=pthread_create(&id2,NULL,(void*)myThread2,NULL); if(ret) {18 printf("Createpthreaderror!"); return1; } pthread_join(id1,NULL);//等待線程1結(jié)束 pthread_join(id2,NULL);//等待線程2結(jié)束 return0; } 我們編譯此程序: #gccpthread_create.c-lpthread 因?yàn)閜t
7、hread的庫(kù)不是linux系統(tǒng)的庫(kù),所以在進(jìn)行編譯的時(shí)候要加上-lpthread,否則編譯不過(guò),會(huì)出現(xiàn)下面錯(cuò)誤 thread_test.c:在函數(shù)‘create’中: thread_test.c:7:警告:在有返回值的函數(shù)中,程序流程到達(dá)函數(shù)尾 /tmp/ccOBJmuD.o:Infunction`main':thread_test.c:(.text+0x4f):對(duì)‘pthread_create’未定義的引用 collect2:ld返回1 運(yùn)行,我們得到如下結(jié)果: #./a.out Thisisthe1stpthread,createdbyziec
8、key.