實(shí)驗(yàn)一進(jìn)程創(chuàng)建 并發(fā)執(zhí)行

上傳人:liu****han 文檔編號(hào):59677295 上傳時(shí)間:2022-03-04 格式:DOC 頁(yè)數(shù):5 大?。?62.50KB
收藏 版權(quán)申訴 舉報(bào) 下載
實(shí)驗(yàn)一進(jìn)程創(chuàng)建 并發(fā)執(zhí)行_第1頁(yè)
第1頁(yè) / 共5頁(yè)
實(shí)驗(yàn)一進(jìn)程創(chuàng)建 并發(fā)執(zhí)行_第2頁(yè)
第2頁(yè) / 共5頁(yè)
實(shí)驗(yàn)一進(jìn)程創(chuàng)建 并發(fā)執(zhí)行_第3頁(yè)
第3頁(yè) / 共5頁(yè)

下載文檔到電腦,查找使用更方便

16 積分

下載資源

還剩頁(yè)未讀,繼續(xù)閱讀

資源描述:

《實(shí)驗(yàn)一進(jìn)程創(chuàng)建 并發(fā)執(zhí)行》由會(huì)員分享,可在線閱讀,更多相關(guān)《實(shí)驗(yàn)一進(jìn)程創(chuàng)建 并發(fā)執(zhí)行(5頁(yè)珍藏版)》請(qǐng)?jiān)谘b配圖網(wǎng)上搜索。

1、 實(shí)驗(yàn)一:進(jìn)程創(chuàng)建、并發(fā)執(zhí)行 一、 實(shí)驗(yàn)?zāi)康? 加強(qiáng)對(duì)進(jìn)程概念的理解 進(jìn)一步了解并發(fā)執(zhí)行的實(shí)質(zhì) 二、 實(shí)驗(yàn)內(nèi)容 1、 利用fork()函數(shù)創(chuàng)建子進(jìn)程。 2、 考察fork()函數(shù)創(chuàng)建的子進(jìn)程與父進(jìn)程之間的同名變量是否為臨界資源。 3、 利用fork()函數(shù)編寫一個(gè)程序,要求父進(jìn)程創(chuàng)建兩個(gè)子進(jìn)程,父進(jìn)程、子進(jìn)程并發(fā)執(zhí)行,輸出并發(fā)執(zhí)行的消息。 三、 實(shí)驗(yàn)環(huán)境 PC + Linux Red Hat操作系統(tǒng) GCC 四、 實(shí)驗(yàn)原理及實(shí)驗(yàn)思

2、路 fork() 功能:創(chuàng)建一個(gè)新的進(jìn)程 語(yǔ)法:#include    #include    pid_t fork(); 說(shuō)明:本系統(tǒng)調(diào)用為調(diào)用進(jìn)程(也稱父進(jìn)程)創(chuàng)建一子進(jìn)程。事實(shí)上,子進(jìn)程是父進(jìn)程的一個(gè)“復(fù)制品”。父子進(jìn)程為獨(dú)立進(jìn)程,平等調(diào)度,用戶空間獨(dú)立 。 返回值:調(diào)用成功,則返回兩次。對(duì)子進(jìn)程返回0,對(duì)父進(jìn)程返回子進(jìn)程號(hào),這也是最方便的區(qū)分父子進(jìn)程的方法。調(diào)用失敗則返回-1給父進(jìn)程,子進(jìn)程不生成 kill() 功能:殺死執(zhí)行中的進(jìn)程 語(yǔ)法:#include    #includ

3、e    void kill(pid_t pid,int signo); 說(shuō)明:pid為要被殺死的進(jìn)程id,signo可以置為SIGINT或SIGTERM。 返回值:等待到一個(gè)子進(jìn)程返回時(shí),返回值為該子進(jìn)程號(hào),同時(shí)stat_loc帶回子進(jìn)程的返回狀態(tài)信息(參考exit)。若無(wú)子進(jìn)程,則返回值為-1。 五、 流程圖 六、源代

4、碼 Lab1-1: #include #include #include main() { pid_t child; printf(“Forking...\n"); child =fork(); if (child<0){ perror("Fork failed!\n"); exit(1); } else if (child==0){ printf("I'm the child!\n"); } else{

5、 printf("I'm the parent!\n"); } printf("Why I'm printed twice??\n"); } Lab1-2: #include #include #include main() { pid_t child; int a=0; printf("Forking...\n"); child=fork(); if (child<0){ perror("Fork failed!\n");

6、 exit(1); } else if (child==0){ a++; printf("Child:a=%d\n",a); } else{ a++; printf("Parent:a=%d\n",a); } } Lab1-3: #include "unistd.h" #include "sys/types.h" #include "signal.h" #include "stdio.h" int main(int argc,char* argv[]) { pid_t chi

7、ld1_pid,child2_pid; int i = 15; /*fork*/ printf("first fork\n"); child1_pid = fork(); if(child1_pid < 0) { printf("fork() fail!\n"); return -1; } else if(child1_pid == 0) { printf("this is the first child process \n"); while(1) { sleep(1); printf("the first c

8、hild proc waiting to be killed\n"); } } else { printf("this is farther process, after first fork\n"); } /*fork*/ printf("second fork\n"); child2_pid = fork(); if(child2_pid < 0) { printf("fork() fail!\n"); return -1; } else if(child2_pid == 0) { printf("this is

9、 the second child process \n"); while(1) { sleep(1); printf("the second child proc waiting to be killed\n"); } } else { printf("this is farther process, after second fork\n"); } while(i > 0) { printf("after %d second,all proc will be killed\n",i); sleep(2); i

10、 -= 2; } /*kill*/ printf("kill the first child proc\n"); kill(child1_pid,SIGINT); printf("kill the second child proc\n"); kill(child2_pid,SIGINT); return 0; } 七、 運(yùn)行結(jié)果及其分析 Lab1-1:輸出:Forking... I'm the child! Why I'm printed twice?

11、? Lab1-2:輸出:Forking... Child a1 Lab1-3:輸出:first fork this is the first child process the first child proc waiting to be killed this is the second child process this is farther process, after second fork 八、 實(shí)驗(yàn)總結(jié) 加強(qiáng)了對(duì)進(jìn)程概念的理解,進(jìn)一步了解了并發(fā)執(zhí)行的實(shí)質(zhì)

展開(kāi)閱讀全文
溫馨提示:
1: 本站所有資源如無(wú)特殊說(shuō)明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請(qǐng)下載最新的WinRAR軟件解壓。
2: 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請(qǐng)聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
3.本站RAR壓縮包中若帶圖紙,網(wǎng)頁(yè)內(nèi)容里面會(huì)有圖紙預(yù)覽,若沒(méi)有圖紙預(yù)覽就沒(méi)有圖紙。
4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
5. 裝配圖網(wǎng)僅提供信息存儲(chǔ)空間,僅對(duì)用戶上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對(duì)用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對(duì)任何下載內(nèi)容負(fù)責(zé)。
6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請(qǐng)與我們聯(lián)系,我們立即糾正。
7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時(shí)也不承擔(dān)用戶因使用這些下載資源對(duì)自己和他人造成任何形式的傷害或損失。

相關(guān)資源

更多
正為您匹配相似的精品文檔
關(guān)于我們 - 網(wǎng)站聲明 - 網(wǎng)站地圖 - 資源地圖 - 友情鏈接 - 網(wǎng)站客服 - 聯(lián)系我們

copyright@ 2023-2025  zhuangpeitu.com 裝配圖網(wǎng)版權(quán)所有   聯(lián)系電話:18123376007

備案號(hào):ICP2024067431號(hào)-1 川公網(wǎng)安備51140202000466號(hào)


本站為文檔C2C交易模式,即用戶上傳的文檔直接被用戶下載,本站只是中間服務(wù)平臺(tái),本站所有文檔下載所得的收益歸上傳人(含作者)所有。裝配圖網(wǎng)僅提供信息存儲(chǔ)空間,僅對(duì)用戶上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對(duì)上載內(nèi)容本身不做任何修改或編輯。若文檔所含內(nèi)容侵犯了您的版權(quán)或隱私,請(qǐng)立即通知裝配圖網(wǎng),我們立即給予刪除!