




版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請進(jìn)行舉報或認(rèn)領(lǐng)
文檔簡介
1、精選優(yōu)質(zhì)文檔-傾情為你奉上深 圳 大 學(xué) 實(shí) 驗(yàn) 報 告 課程名稱: 操作系統(tǒng) 實(shí)驗(yàn)項(xiàng)目名稱: 進(jìn)程控制 學(xué)院: 軟件學(xué)院 專業(yè): 軟件工程 指導(dǎo)教師: 梁正平 報告人: 文 成 學(xué)號: 班級: 2 實(shí)驗(yàn)時間: 2013. 03. 31 實(shí)驗(yàn)報告提交時間: 2013. 04. 24 教務(wù)處制一. 實(shí)驗(yàn)?zāi)康耐ㄟ^進(jìn)程的創(chuàng)建、撤銷和運(yùn)行加深對進(jìn)程概念和進(jìn)程并發(fā)執(zhí)行的理解,明確進(jìn)程與程序之間的區(qū)別。二. 實(shí)驗(yàn)要求1 實(shí)現(xiàn)對進(jìn)程生命周期全過程的管理,包括進(jìn)程的創(chuàng)建、撤銷、執(zhí)行、阻塞、喚醒、掛起、激活等。2 實(shí)現(xiàn)對多個進(jìn)程并發(fā)執(zhí)行的管理。三. 方法、步驟1、 函數(shù)說明l fork(建立一個新的進(jìn)程)定義函
2、數(shù) pid_t fork(void);函數(shù)說明 fork()會產(chǎn)生一個新的子進(jìn)程,其子進(jìn)程會復(fù)制父進(jìn)程的數(shù)據(jù)與堆??臻g,并繼承父進(jìn)程的用戶代碼,組代碼,環(huán)境變量、已打開的文件代碼、工作目錄和資源限制等。 返回值 如果fork()成功則在父進(jìn)程會返回新建立的子進(jìn)程代碼(PID),而在新建立的子進(jìn)程中則返回0。如果fork 失敗則直接返回-1,失敗原因存于errno中。l waitpid(等待子進(jìn)程中斷或結(jié)束)定義函數(shù) pid_t waitpid(pid_t pid,int * status,int options);函數(shù)調(diào)用 waitpid(pid, NULL, 0);函數(shù)說明 waitpid(
3、)會暫時停止目前進(jìn)程的執(zhí)行,直到有信號來到或子進(jìn)程結(jié)束。如果在調(diào)用waitpid()時子進(jìn)程已經(jīng)結(jié)束,則wait()會立即返回子進(jìn)程結(jié)束狀態(tài)值。子進(jìn)程的結(jié)束狀態(tài)值會由參數(shù)status返回,而子進(jìn)程的進(jìn)程識別碼也會一快返回。如果不在意結(jié)束狀態(tài)值,則參數(shù)status可以設(shè)成NULL。參數(shù)pid為欲等待的子進(jìn)程識別碼,其他數(shù)值意義如下:pid<-1 等待進(jìn)程組識別碼為pid絕對值的任何子進(jìn)程。pid=-1 等待任何子進(jìn)程,相當(dāng)于wait()。pid=0 等待進(jìn)程組識別碼與目前進(jìn)程相同的任何子進(jìn)程。pid>0 等待任何子進(jìn)程識別碼為pid的子進(jìn)程。返回值 如果執(zhí)行成功則返回子進(jìn)程識別碼(P
4、ID),如果有錯誤發(fā)生則返回-1。失敗原因存于errnol getpid(取得進(jìn)程識別碼) 定義函數(shù) pid_t getpid(void);函數(shù)說明 getpid()用來取得目前進(jìn)程的進(jìn)程識別碼,許多程序利用取到的此值來建立臨時文件,以避免臨時文件相同帶來的問題。返回值 目前進(jìn)程的進(jìn)程識別碼l exit(正常結(jié)束進(jìn)程) 定義函數(shù) void exit(int status);函數(shù)說明 exit()用來正常終結(jié)目前進(jìn)程的執(zhí)行,并把參數(shù)status返回給父進(jìn)程,而進(jìn)程所有的緩沖區(qū)數(shù)據(jù)會自動寫回并關(guān)閉未關(guān)閉的文件。l execl(執(zhí)行文件)定義函數(shù) int execl(const char * pat
5、h,const char * arg,.);函數(shù)說明 execl()用來執(zhí)行參數(shù)path字符串所代表的文件路徑,接下來的參數(shù)代表執(zhí)行該文件時傳遞過去的argv(0)、argv1,最后一個參數(shù)必須用空指針(NULL)作結(jié)束。返回值 如果執(zhí)行成功則函數(shù)不會返回,執(zhí)行失敗則直接返回-1,失敗原因存于errno中。調(diào)用ls命令范例: execl("/bin/ls", "/bin/ls", "-l" , "/etc", NULL);啟動VC+等開發(fā)平臺,創(chuàng)建我們所需的程序文件并保存到CYGWIN的用戶文件夾下四. 實(shí)驗(yàn)過程及
6、內(nèi)容實(shí)驗(yàn)指導(dǎo)例程2:#include <unistd.h>#include <stdarg.h>#include <time.h>#include <sys/types.h>#include <sys/wait.h>#include <stdio.h>#include <stdlib.h>int tprintf (const char*fmt,.);int main(void)int i=0,j=0;pid_t pid;printf("Hello from Parent Process,PID is
7、%d.n",getpid();pid=fork();printf("process %d | My parent PID is %d.n",getpid(),getppid();sleep(1);if(pid=0)/子進(jìn)程執(zhí)行sleep(1);for(i=0;i<3;i+)printf("Hello from THE child process %d.%d timesn",getpid(),i+1);sleep(1);else if(pid!=-1)/父進(jìn)程tprintf("Parent forked one child pro
8、cess-%d.n",pid); pid=fork(); printf("process %d | My parent PID is %d.n",getpid(),getppid(); sleep(1); if(pid=0)sleep(1);for(i=0;i<3;i+)printf("Hello from child process %d.%d timesn",getpid(),i+1);sleep(1);else if(pid!=-1)tprintf("Parent forked one child process-%d.n
9、",pid); tprintf("Parent is waiting for child to exit.n");waitpid(pid,NULL,0);tprintf("child process has exited.n");tprintf("parent had exited.n");else tprintf("everything was done whitout error.n");return 0;int tprintf(const char*fmt,.)va_list args;struct
10、 tm *tstruct;time_t tsec;tsec=time(NULL);tstruct=localtime(&tsec);printf("%02d:%02d:%02d:%5d|",tstruct->tm_hour,tstruct->tm_min,tstruct->tm_sec,getpid();va_start(args,fmt);return vprintf(fmt,args);模仿例程,編寫一段程序(創(chuàng)建兩個子進(jìn)程):#include <unistd.h>#include <stdarg.h>#include
11、<time.h>#include <sys/types.h>#include <sys/wait.h>#include <stdio.h>#include <stdlib.h>int tprintf(const char *fmt,.);int main(void)pid_t pid1,pid2;pid1=fork();if(pid1 = 0) /子進(jìn)程sleep(5);tprintf("Hello from Child Process1!n");tprintf("my parent is %d.n&qu
12、ot;,getppid();tprintf("I am calling exec.n");execl("/bin/ps","-a",NULL);/ execl("/bin/ls","-l","/etc",NULL);tprintf("You should never see this because the child is alredy gone.n");else if(pid1 != -1) /父進(jìn)程 pid2=fork(); /用父進(jìn)程創(chuàng)建第二個子進(jìn)
13、程if(pid2 = 0)sleep(10); /時間設(shè)長于上面的睡眠時間,保證兩個進(jìn)程的有序輸出tprintf("Hello from Child Process1!n");tprintf("my parent is %d.n",getppid();tprintf("I am calling exec.n");execl("/bin/ps","-a",NULL);/ execl("/bin/ls","-l","/etc",NULL);
14、tprintf("You should never see this because the child is alredy gone.n"); else if(pid2 != -1)tprintf("Hello from Parent,pid %d.n",getpid();sleep(1);tprintf("Parent forked process1 %d.n",pid1);sleep(1);tprintf("Parent forked process2 %d.n",pid2);sleep(1);tprintf
15、("Patent is waiting for child to exit.n");waitpid(pid1, NULL,0);waitpid(pid2, NULL,0);tprintf("Parent had exited.n"); elsetprintf("Everything was done without error.n");return 0;int tprintf(const char *fmt,.)va_list args;struct tm *tstruct;time_t tsec;tsec = time(NULL);tstruct = localtime (&tsec);printf("%02d:%02d:%02d:% 5d|",tstruct->tm_hour,tstruct->tm_min,tstruct->tm_sec,getpid();va_start(args,fmt);return vprintf(fmt,args);運(yùn)行結(jié)果:分析:運(yùn)用例3的代碼,加上一個子進(jìn)程的嵌套來實(shí)現(xiàn)兩個子進(jìn)程的創(chuàng)建,
溫馨提示
- 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
- 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會有圖紙預(yù)覽,若沒有圖紙預(yù)覽就沒有圖紙。
- 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
- 5. 人人文庫網(wǎng)僅提供信息存儲空間,僅對用戶上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對任何下載內(nèi)容負(fù)責(zé)。
- 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請與我們聯(lián)系,我們立即糾正。
- 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時也不承擔(dān)用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。
最新文檔
- 年會發(fā)言稿怎么寫呢(格式10篇)
- 信息技術(shù)教學(xué)方法的選擇課件
- 操作系統(tǒng)命令行使用的試題及答案
- 通史版2025版高考?xì)v史大二輪復(fù)習(xí)第九講工業(yè)文明的曙光近代前期的世界教學(xué)案
- 食品質(zhì)檢員考試的法規(guī)遵循意識試題及答案
- 解決汽車美容顧客疑問的考試試題及答案
- 藥物研發(fā)的市場趨勢試題及答案
- 2025年教師信息技術(shù)培訓(xùn)計(jì)劃集合(32篇)
- 關(guān)于愛國衛(wèi)生月的工作總結(jié)(28篇)
- DB15T 1058-2024平菇菌種制作技術(shù)規(guī)程
- 體外膈肌起搏器
- “數(shù)學(xué)悖論”-辛普森悖論
- 六宮格數(shù)獨(dú)100題
- 工程項(xiàng)目跟蹤審計(jì)送審資料清單
- 中文產(chǎn)品手冊機(jī)架效果器tcelectronic-triplec manual chinese
- 人衛(wèi)版內(nèi)科學(xué)第九章白血?。ǖ?節(jié))
- 食堂設(shè)備維修記錄
- DB65∕T 4357-2021 草原資源遙感調(diào)查技術(shù)規(guī)程
- 幼兒園繪本:《閃閃的紅星》 紅色故事
- 植物生理學(xué)_第七版_潘瑞熾_答案
- FZ∕T 60021-2021 織帶產(chǎn)品物理機(jī)械性能試驗(yàn)方法
評論
0/150
提交評論