linux下c語言多線程編程實(shí)例

linux下c語言多線程編程實(shí)例

ID:15959374

大小:43.50 KB

頁數(shù):6頁

時(shí)間:2018-08-06

linux下c語言多線程編程實(shí)例_第1頁
linux下c語言多線程編程實(shí)例_第2頁
linux下c語言多線程編程實(shí)例_第3頁
linux下c語言多線程編程實(shí)例_第4頁
linux下c語言多線程編程實(shí)例_第5頁
資源描述:

《linux下c語言多線程編程實(shí)例》由會(huì)員上傳分享,免費(fèi)在線閱讀,更多相關(guān)內(nèi)容在行業(yè)資料-天天文庫

1、linux下C語言多線程編程實(shí)例2007年11月29日星期四10:39學(xué)東西,往往實(shí)例才是最讓人感興趣的,老是學(xué)基礎(chǔ)理論,不動(dòng)手,感覺沒有成就感,呵呵。下面先來一個(gè)實(shí)例。我們通過創(chuàng)建兩個(gè)線程來實(shí)現(xiàn)對(duì)一個(gè)數(shù)的遞加?;蛟S這個(gè)實(shí)例沒有實(shí)際運(yùn)用的價(jià)值,但是稍微改動(dòng)一下,我們就可以用到其他地方去拉。下面是我們的代碼:/*thread_example.c:cmultiplethreadprogramminginlinux*author:falcon*E-mail:tunzhj03@st.lzu.edu.cn*/#include#include

2、tdio.h>#include#include#defineMAX10pthread_tthread[2];pthread_mutex_tmut;intnumber=0,i;void*thread1(){printf("thread1:I'mthread1");for(i=0;i

3、}printf("thread1:主函數(shù)在等我完成任務(wù)嗎?");pthread_exit(NULL);}void*thread2(){printf("thread2:I'mthread2");for(i=0;i

4、oidthread_create(void){inttemp;memset(&thread,0,sizeof(thread));//comment1/*創(chuàng)建線程*/if((temp=pthread_create(&thread[0],NULL,thread1,NULL))!=0)//comment2printf("線程1創(chuàng)建失敗!");elseprintf("線程1被創(chuàng)建");if((temp=pthread_create(&thread[1],NULL,thread2,NULL))!=0)//comment3printf("線程2創(chuàng)建失敗");e

5、lseprintf("線程2被創(chuàng)建");}voidthread_wait(void){/*等待線程結(jié)束*/if(thread[0]!=0){//comment4pthread_join(thread[0],NULL);printf("線程1已經(jīng)結(jié)束");}if(thread[1]!=0){//comment5pthread_join(thread[1],NULL);printf("線程2已經(jīng)結(jié)束");}}intmain(){/*用默認(rèn)屬性初始化互斥鎖*/pthread_mutex_init(&mut,NULL);printf("我是主函數(shù)哦,我

6、正在創(chuàng)建線程,呵呵");thread_create();printf("我是主函數(shù)哦,我正在等待線程完成任務(wù)阿,呵呵");thread_wait();return0;}下面我們先來編譯、執(zhí)行一下引文:falcon@falcon:~/program/c/code/ftp$gcc-lpthread-othread_examplethread_example.cfalcon@falcon:~/program/c/code/ftp$./thread_example我是主函數(shù)哦,我正在創(chuàng)建線程,呵呵線程1被創(chuàng)建線程2被創(chuàng)建我是主函數(shù)哦,我正在等待線程完成任務(wù)

7、阿,呵呵thread1:I'mthread1thread1:number=0thread2:I'mthread2thread2:number=1thread1:number=2thread2:number=3thread1:number=4thread2:number=5thread1:number=6thread1:number=7thread2:number=8thread1:number=9thread2:number=10thread1:主函數(shù)在等我完成任務(wù)嗎?線程1已經(jīng)結(jié)束thread2:主函數(shù)在等我完成任務(wù)嗎?線程2已經(jīng)結(jié)束實(shí)例代碼里頭的注釋應(yīng)

8、該比較清楚了吧,下面我把網(wǎng)路上介紹上面涉及到的幾個(gè)函數(shù)和變量給引用

當(dāng)前文檔最多預(yù)覽五頁,下載文檔查看全文

此文檔下載收益歸作者所有

當(dāng)前文檔最多預(yù)覽五頁,下載文檔查看全文
溫馨提示:
1. 部分包含數(shù)學(xué)公式或PPT動(dòng)畫的文件,查看預(yù)覽時(shí)可能會(huì)顯示錯(cuò)亂或異常,文件下載后無此問題,請(qǐng)放心下載。
2. 本文檔由用戶上傳,版權(quán)歸屬用戶,天天文庫負(fù)責(zé)整理代發(fā)布。如果您對(duì)本文檔版權(quán)有爭(zhēng)議請(qǐng)及時(shí)聯(lián)系客服。
3. 下載前請(qǐng)仔細(xì)閱讀文檔內(nèi)容,確認(rèn)文檔內(nèi)容符合您的需求后進(jìn)行下載,若出現(xiàn)內(nèi)容與標(biāo)題不符可向本站投訴處理。
4. 下載文檔時(shí)可能由于網(wǎng)絡(luò)波動(dòng)等原因無法下載或下載錯(cuò)誤,付費(fèi)完成后未能成功下載的用戶請(qǐng)聯(lián)系客服處理。