操作系統(tǒng)試驗(yàn)報(bào)告進(jìn)程的創(chuàng)建_第1頁(yè)
操作系統(tǒng)試驗(yàn)報(bào)告進(jìn)程的創(chuàng)建_第2頁(yè)
操作系統(tǒng)試驗(yàn)報(bào)告進(jìn)程的創(chuàng)建_第3頁(yè)
操作系統(tǒng)試驗(yàn)報(bào)告進(jìn)程的創(chuàng)建_第4頁(yè)
操作系統(tǒng)試驗(yàn)報(bào)告進(jìn)程的創(chuàng)建_第5頁(yè)
已閱讀5頁(yè),還剩3頁(yè)未讀, 繼續(xù)免費(fèi)閱讀

下載本文檔

版權(quán)說(shuō)明:本文檔由用戶(hù)提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請(qǐng)進(jìn)行舉報(bào)或認(rèn)領(lǐng)

文檔簡(jiǎn)介

1、實(shí)驗(yàn)題目進(jìn)程的創(chuàng)建小組合作否姓名班級(jí)學(xué)號(hào)一、實(shí)驗(yàn)?zāi)康?、了解進(jìn)程的創(chuàng)建。2、了解進(jìn)程間的調(diào)用以及實(shí)現(xiàn)。3、分析進(jìn)程競(jìng)爭(zhēng)資源的現(xiàn)象,學(xué)習(xí)解決互斥的方法。4、加深對(duì)進(jìn)程概念的理解,認(rèn)識(shí)并發(fā)執(zhí)行的本質(zhì)。二實(shí)驗(yàn)環(huán)境Windows 系統(tǒng)的計(jì)算機(jī)一臺(tái),安裝了 Linux 虛擬機(jī)三、實(shí)驗(yàn)內(nèi)容與步驟1、fork()系統(tǒng)調(diào)用的使用例子程序代碼:#include#include #include int glob=3;int main(void)pid_t pid;int loc=3;printf(before fork();glod=%d,loc=%d.n,glob,loc); if(pid=fork()0)p

2、rintf(fork() error. n); exit(0);else if(pid=0) glob+; loc-;printf(child process changes glob and loc: n); else學(xué)習(xí)參考wait(0);printf(parent process doesnt change the glob and loc:n); printf(glob=%d,loc=%dn,glob,loc);exit(0);運(yùn)行結(jié)果:2、理解 vofork ()調(diào)用:程序代碼:#include#include#includeint glob=3;int main(void)pid_

3、t pid;int loc=3;if(pid=vfork()0)printf(vfork() errorn);exit(0);else if(pid=0)glob+;loc-;printf(child process changes the glob and locn);exit(0);elseprintf (parent process doesnt change the glob and locn); printf(glob=%d,val=%dn,glob,loc);學(xué)習(xí)參考運(yùn)行結(jié)果:3、給進(jìn)程指定一個(gè)新的運(yùn)行程序的函數(shù)exec().程序代碼: printe1.c代碼:#includein

4、t main(int argc,char * argv)int n;char * * ptr;extern char * * environ;for(n=0;nargc;n+)printf(argv%d:%sn,n,argvn);for(ptr=environ; * ptr!=0;ptr+)printf(%sn,* ptr);exit(0);file4.c代碼如下:#include#include#include#includechar * env_list=USER=root,PATH=/root/,NULL;int main()pid_t pid;if(pid=fork()0)printf

5、(fork error!n);exit(0);else if(pid=0) if(execle(/root/print1,print1,arg1,arg2,(char *)0,env_list)0) printf(execle error!n);學(xué)習(xí)參考 exit(0);if(waitpid(pid,NULL,0)0) printf(WAIT ERROR!n);exit(0);if(pid=fork()0)printf(fork error!n);exit(0);else if(pid=0)if(execlp(print1,print1,arg1,(char *)0)0) printf(exe

6、cle error!n);exit(0);exit(0);運(yùn)行結(jié)果:4、進(jìn)程終止函數(shù) exit()。程序代碼:#includemain()printf(this is a exit system call! n);exit(0);printf(this sentence never be displayen:n);#includemain()printf(this is a _exit_test system call! n);printf(content in buffer);exit(0);學(xué)習(xí)參考運(yùn)行結(jié)果:5、wait()函數(shù)和 sleep(函) 數(shù)。程序代碼:#include main

7、() int pid1; if(pid1=fork() if(fork() printf(parents context,n); printf(parents waiting the child1 terminate,n); wait(0);printf(parents waiting the child2 terminate,n); wait(0);printf(parent terminates,n); exit(0); else printf(child2s context,n);sleep(5); printf(child2 terminates,n);exit(0);else if(

8、pid1=0) printf(child1s context,n); sleep(10);printf(child1 terminates,n); exit(0);學(xué)習(xí)參考運(yùn)行結(jié)果:6、編寫(xiě)一段程序,父進(jìn)程使用 fork()創(chuàng)建兩個(gè)子進(jìn)程, 利用輸出函數(shù) putchar 父進(jìn)程顯示字符” a”,兩個(gè)子進(jìn)程分別顯示“ b”和“ c”。程序代碼:#include#include#includeint main()int pid;if(pid=fork()if(fork()printf(parent process is n);putchar(A);printf(n);elseprintf(chil

9、d2 process is n);putchar(C);printf(n);elseif(pid=0)printf(child1 process is n);學(xué)習(xí)參考 putchar(B); printf(n);運(yùn)行結(jié)果:四、實(shí)驗(yàn)過(guò)程與分析1、在 1 例子中,調(diào)用正確完成時(shí),給父進(jìn)程返回的是被創(chuàng)建子進(jìn)程標(biāo)識(shí), 給子進(jìn)程自己返回的是 0;創(chuàng)建失敗時(shí),返回給父進(jìn)程的是 -1。2、在 2 例子中, vfork ()調(diào)用后需要注意兩點(diǎn): (1)子進(jìn)程先運(yùn)行,父進(jìn)程掛起。子進(jìn)程調(diào)用 exec()或 exit()之后 父進(jìn)程的執(zhí)行順序不再有限制。( 2)子進(jìn)程在調(diào)用 exec()或 exit()之前。父進(jìn)

10、程被激活,就會(huì)造成死 鎖。3、在 6 例子中,上述程序是父進(jìn)程先創(chuàng)建一個(gè)子進(jìn)程,若成功,再創(chuàng)建 另一個(gè)子進(jìn)程,之后三個(gè)進(jìn)程并發(fā)執(zhí)行。究竟誰(shuí)先執(zhí)行,是隨機(jī)的。所以 執(zhí)行結(jié)果有多重種。五、實(shí)驗(yàn)總結(jié)學(xué)習(xí)參考 1、一個(gè)進(jìn)程調(diào)用 exec()函數(shù)來(lái)運(yùn)行一個(gè)新程序。之后該進(jìn)程的代碼段、 數(shù)據(jù)段和堆棧段就被新程序的所代替。新程序從自己的 main()函數(shù)開(kāi)始 執(zhí)行。 exec()函數(shù)有 6 種不同的形式,任何一個(gè)都可以完成 exec()的 功能,只是調(diào)用參數(shù)不同。2、在父子進(jìn)程同步中,當(dāng)一個(gè)進(jìn)程結(jié)束時(shí),產(chǎn)生一個(gè)終止?fàn)顟B(tài)字,然后 核心發(fā)一個(gè) SIGCHLD 信號(hào)通知父進(jìn)程。因?yàn)樽舆M(jìn)程結(jié)束是異步于父進(jìn)程 的,故父進(jìn)程要結(jié)束之前,要同步等待子進(jìn)程終止。這是通過(guò)調(diào)用系統(tǒng)調(diào) 用 wait 或 waitpid 來(lái)實(shí)現(xiàn)

溫馨提示

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

最新文檔

評(píng)論

0/150

提交評(píng)論