手机看片福利永久国产日韩-手机看片369-手机精品在线-手机国产乱子伦精品视频-国产精品嫩草影院在线观看免费-国产精品嫩草影院在线播放

首頁 新聞 > 科技 > 正文

多線程編程之:Linux線程編程

9.2 Linux線程編程

9.2.1 線程基本編程

這里要講的線程相關操作都是用戶空間中的線程的操作。在Linux中,一般pthread線程庫是一套通用的線程庫,是由POSIX提出的,因此具有很好的可移植性。

(1)函數(shù)說明。

創(chuàng)建線程實際上就是確定調用該線程函數(shù)的入口點,這里通常使用的函數(shù)是pthread_create()。在線程創(chuàng)建以后,就開始運行相關的線程函數(shù),在該函數(shù)運行完之后,該線程也就退出了,這也是線程退出一種方法。另一種退出線程的方法是使用函數(shù)pthread_exit(),這是線程的主動行為。這里要注意的是,在使用線程函數(shù)時,不能隨意使用exit()退出函數(shù)進行出錯處理,由于exit()的作用是使調用進程終止,往往一個進程包含多個線程,因此,在使用exit()之后,該進程中的所有線程都終止了。因此,在線程中就可以使用pthread_exit()來代替進程中的exit()。

由于一個進程中的多個線程是共享數(shù)據段的,因此通常在線程退出之后,退出線程所占用的資源并不會隨著線程的終止而得到釋放。正如進程之間可以用wait()系統(tǒng)調用來同步終止并釋放資源一樣,線程之間也有類似機制,那就是pthread_join()函數(shù)。pthread_join()可以用于將當前線程掛起來等待線程的結束。這個函數(shù)是一個線程阻塞的函數(shù),調用它的函數(shù)將一直等待到被等待的線程結束為止,當函數(shù)返回時,被等待線程的資源就被收回。

前面已提到線程調用pthread_exit()函數(shù)主動終止自身線程。但是在很多線程應用中,經常會遇到在別的線程中要終止另一個線程的執(zhí)行的問題。此時調用pthread_cancel()函數(shù)實現(xiàn)這種功能,但在被取消的線程的內部需要調用pthread_setcancel()函數(shù)和pthread_setcanceltype()函數(shù)設置自己的取消狀態(tài),例如被取消的線程接收到另一個線程的取消請求之后,是接受還是忽略這個請求;如果接受,是立刻進行終止操作還是等待某個函數(shù)的調用等。

(2)函數(shù)格式。

表9.1列出了pthread_create()函數(shù)的語法要點。

表9.2列出了pthread_exit()函數(shù)的語法要點。

表9.3列出了pthread_join()函數(shù)的語法要點。

表9.4列出了pthread_cancel()函數(shù)的語法要點。

(3)函數(shù)使用。

以下實例中創(chuàng)建了3個線程,為了更好地描述線程之間的并行執(zhí)行,讓3個線程重用同一個執(zhí)行函數(shù)。每個線程都有5次循環(huán)(可以看成5個小任務),每次循環(huán)之間會隨機等待1~10s的時間,意義在于模擬每個任務的到達時間是隨機的,并沒有任何特定規(guī)律。

/* thread.c */

#include

#include

#include

#define THREAD_NUMBER 3 /*線程數(shù)*/

#define REPEAT_NUMBER 5 /*每個線程中的小任務數(shù)*/

#define DELAY_TIME_LEVELS 10.0 /*小任務之間的最大時間間隔*/

void *thrd_func(void *arg)

{ /* 線程函數(shù)例程 */

int thrd_num = (int)arg;

int delay_time = 0;

int count = 0;

printf("Thread %d is starting\n", thrd_num);

for (count = 0; count < REPEAT_NUMBER; count++)

{

delay_time = (int)(rand() * DELAY_TIME_LEVELS/(RAND_MAX)) + 1;

sleep(delay_time);

printf("\tThread %d: job %d delay = %d\n",

thrd_num, count, delay_time);

}

printf("Thread %d finished\n", thrd_num);

pthread_exit(NULL);

}

int main(void)

{

pthread_t thread[THREAD_NUMBER];

int no = 0, res;

void * thrd_ret;

srand(time(NULL));

for (no = 0; no < THREAD_NUMBER; no++)

{

/* 創(chuàng)建多線程*/

res = pthread_create(&thread[no], NULL, thrd_func, (void*)no);

if (res != 0)

{

printf("Create thread %d failed\n", no);

exit(res);

}

}

printf("Create treads success\n Waiting for threads to finish...\n");

for (no = 0; no < THREAD_NUMBER; no++)

{

/* 等待線程結束 */

res = pthread_join(thread[no], &thrd_ret);

if (!res)

{

printf("Thread %d joined\n", no);

}

else

{

printf("Thread %d join failed\n", no);

}

}

return 0;

}

以下是程序運行結果。可以看出每個線程的運行和結束是獨立與并行的。

$ ./thread

Create treads success

Waiting for threads to finish...

Thread 0 is starting

Thread 1 is starting

Thread 2 is starting

Thread 1: job 0 delay = 6

Thread 2: job 0 delay = 6

Thread 0: job 0 delay = 9

Thread 1: job 1 delay = 6

Thread 2: job 1 delay = 8

Thread 0: job 1 delay = 8

Thread 2: job 2 delay = 3

Thread 0: job 2 delay = 3

Thread 2: job 3 delay = 3

Thread 2: job 4 delay = 1

Thread 2 finished

Thread 1: job 2 delay = 10

Thread 1: job 3 delay = 4

Thread 1: job 4 delay = 1

Thread 1 finished

Thread 0: job 3 delay = 9

Thread 0: job 4 delay = 2

Thread 0 finished

Thread 0 joined

Thread 1 joined

Thread 2 joined

關鍵詞: Linux

最近更新

關于本站 管理團隊 版權申明 網站地圖 聯(lián)系合作 招聘信息

Copyright © 2005-2018 創(chuàng)投網 - www.extremexp.net All rights reserved
聯(lián)系我們:33 92 950@qq.com
豫ICP備2020035879號-12

 

主站蜘蛛池模板: 亚洲精品永久www忘忧草| 国产精品无码久久久久| 动漫成人在线| 翁虹三级在线伦理电影| 欧美综合自拍亚洲综合图| 国产欧美精品一区二区色综合| 午夜国产在线视频| 国产精品一区二区久久沈樵| 99re热这里有精品首页视频| 中国武警gaysexchina武警gay| 男人的天堂在线免费视频| 免费高清理伦片在线观看| 女人与大拘交口述| 天天看片天天射| 一本热久久sm色国产| 国产男女爽爽爽免费视频| 黄色一级电视| 日本漫画大全无翼无彩全番| 国产123区在线视频观看| 一区国严二区亚洲三区| 蜜桃99| 交换韩国电影| 欧美美女被艹| 国产一区精品视频| 日本三级免费观看| 天天舔天天色| 欧美三级免费| 欧亚专线欧洲s码wm| 高h网站| 国语第一次处破女| 8x视频在线观看| 欧洲大片无需服务器| 国产精品欧美一区二区三区不卡| 老八吃屎奥利给原视频带声音的| 大雄的性生活| jizzjizz国产精品久久| maya玛雅□一亚洲电影| acg里番全彩侵犯本子福利| 精品国产不卡一区二区三区| 波多野结衣作品在线观看| 中文字幕1页|