试验A4使用动态优先权地进程调度算法地模拟_第1页
试验A4使用动态优先权地进程调度算法地模拟_第2页
试验A4使用动态优先权地进程调度算法地模拟_第3页
试验A4使用动态优先权地进程调度算法地模拟_第4页
试验A4使用动态优先权地进程调度算法地模拟_第5页
已阅读5页,还剩9页未读 继续免费阅读

下载本文档

版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领

文档简介

1、文档 实验四 使用动态优先权的进程调度算法的模拟 hi.baidu./xi nghui100/blog/item/c41d5c1b325b40d0ad6e75d c.html 1、实验目的 通过动态优先权算法的模拟加深对进程概念和进程调度过程的理解。 2、实验容 (1) 用 C 语言来实现对 N 个进程采用动态优先算法的进程调度; (2) 每个用来标识进程的进程控制块 PCB 用结构来描述,包括以下字段: 进程标识符 id 进程优先数 priority ,并规定优先数越大的进程,其优先权越高; 进程已占用的CPU 寸间 cputime ; 进程还需占用的 CPU 寸寸间 alltime ,当进

2、程运行完毕时,alltime 变为 0; 进程的阻塞时间 startblock ,表示当进程再运行 startblock 个时间片后, 进程将进入阻塞状态; 进程被阻塞的时间 blocktime,表示已阻塞的进程再等待 blocktime 个时间 片后,将转换成就绪态 进程状态 state ; 队列指针 next,用来将 PCB 排成队列 (3) 优先数改变的原则: 进程在就绪队列中呆一个时间片,优先数增加 1 进程每运行一个时间片,优先数减 3。 (4)假设在调度前,系统中有 5 个进程,它们的初始状态如下: ID 0 1 2 3 4 PRIORITY 9 38 30 29 0 CPUTIM

3、E 0 0 0 0 0 ALLTIME 3 3 6 A 4 STARTBLOC P2 -1 -1 -1 -1 BLOCKTIME 3 0 0 0 0 STATE READY READY READY READY READY (5)为了清楚地观察诸进程的调度过程,程序应将每个时间片的进程的情况显 示出来,参照的具体格式如下: RUNNING PROG i READY_QUEUE:-id1-id2 BLOCK_QUEUE:-id3-id4 ID 0 1 2 3 4 PRIORITY P0 P1 P2 P3 P4 CPUTIME C0 C1 C2 C3 C4 ALLTIME A0 A1 A2 A3 A

4、4 STARTBLOCK T0 T1 T2 T3 T4 文档 BLOCKTIME B0 B1 B2 B3 B STATE SO S1 S2 S3 S4 3、思考题 (1)在实际的调度中, 除了按调度算法选择下一个执行的进程外, 还应处理哪 些工作? 队列实现: #in clude #defi ne NULL 0 #defi ne M 10 typedef struct node intid; int pr; int ct; int at; int bt; int sb; struct node *n ext; jd; jd *max(jd *p) jd *max no de=NULL,*p1,

5、*p2,*p3=p; int maxnum; p 仁 p; p2=p; if(p- next=NULL) return NULL; maxnum=p-n ext-pr; while(p1- next!=NULL) p2=p1- n ext; if(max num pr) maxno de=p2; p3=p1; maxnum=p2_pr; p1=p1- n ext; p3-n ext=max no de-n ext; maxno de-n ext=NULL; retur n maxno de; void blocktoready(jd *pblock,jd *pready) jd *p 1= p

6、block,*p3; while(p1- next!=NULL) p3=p1- n ext; if(p3-bt=0) p1- n ext=p3-n ext; p3-n ext=pready-n ext; pready _n ext=p3; p1=p1- n ext; if(p1=NULL) break; void ready(jd *p) jd *p1=p-n ext; while(p1!=NULL) p1-pr+; p1=p1- n ext; void run(jd *p) jd *p1; if(p- next!=NULL) p1=p-n ext; p1_pr=p1_pr-3; p1-at-

7、; 文档 p1-ct+; void block(jd *p) jd *p1=p-n ext; while(p1!=NULL) p1-bt-; p1=p1- n ext; void run toreadyorblock(jd *prun,jd *pready,jd *pblock) jd *p; if(pru n-n ext=NULL) return; p=pr un_n ext; if(p_at=O) prun-n ext=NULL; else if(p_ct=p_sb) p-n ext=pblock- n ext; pblock- n ext=p; prun-n ext=NULL; else

8、 p-n ext=pready-n ext; pready _n ext=p; prun-n ext=NULL; jd *head(jd pcb,i nt L) int i; for(i=0;iL;i+) prin tf(i nput pcd%d in formati onn ,i); prin tf(PRIORITY:); scan f(%d,&pcbi.pr); prin tf(ALLTIME:); scan f(%d,&pcbi.at); prin tf(STARTBLOCK:); scan f(%d,&pcbi.sb); prin tf(BLOCKTIME:);

9、 scan f(%d,&pcbi.bt); pcbi.id=i; pcbi.ct=O; for(i=0;i next=NULL) prin tf(ttthe queue are empty n); while(p- next!=NULL) p1=p-n ext; prin tf(tt%dt%dt%dt%dt%dt%dn,p1-id,p1-pr,p1-ct,p1-at,p1-sb,p1-bt); p=p-n ext; if(p=NULL) break; int mai n() jd pcbM; jd *pready=(jd *)malloc(sizeof(jd); 文档 jd *prun

10、=(jd *)malloc(sizeof(jd); jd *pblock=(jd *)malloc(sizeof(jd); int L,i, n=1; pready-n ext=NULL; prun-n ext=NULL; pblock- next=NULL; prin tf(please in put the nu mber of pcb :n ”); scan f(%d,&L); pready-n ext=head(pcb,L); while(1) prun-n ext=max(pready); run (pru n); ready(pready); block(pblock);

11、prin tf(r unnin g%d every pcb in formatio n:n, n); prin tf(ttidtprtcttattsbtbtn); prin tf(the ready pcb:n); prin t(pready); prin tf(the run pcb:n); prin t(pr un); prin tf(the block pcb:n); prin t(pblock); prin tf(the all pcb:n); for(i=0;in ext=NULL & pblock- next=NULL) break; xt=head(pcb,L); whi

12、le(1) prun-n ext=max(pready); run (pru n); ready(pready); block(pblock); prin tf(r unnin g%d every pcb in formatio n:n, n); prin tf(ttidtprtcttattsbtbtn); prin tf(the ready pcb:n); prin t(pready); prin tf(the run pcb:n); prin t(pr un); prin tf(the block pcb:n); prin t(pblock); prin tf(the all pcb:n)

13、; for(i=0;i next=NULL & pblock- next=NULL) break; xt=head(pcb,L); while(1) 文档 prun-n ext=max(pready); run (pru n); ready(pready); block(pblock); prin tf(r unnin g%d every pcb in formatio n:n, n); prin tf(ttidtprtcttattsbtbtn); prin tf(the ready pcb:n); prin t(pready); prin tf(the run pcb:n); pri

14、n t(pr un); prin tf(the block pcb:n); prin t(pblock); prin tf(the all pcb:n); for(i=0;i next=NULL & pblock- next=NULL) break; 运行结果: rootlocalhost root# gcc -o a shiya n4.c rootlocalhost root# ./a 数组实现: 实验目的 通过动态优先权算法的模拟加深对进程概念和进程调度过程的理解。 2、 实验容: (1) 用 C 语言来实现对 N 个进程采用动态优先权优先算法的进程调度。 (2) 每个用来标识进程

15、的进程控制块 PCB 用结构来描述,包括以下字段: 进程标识数 ID 进程优先数 PRIORITY,并规定优先数越大的进程,其优先权越高 进程已占用的 CPU 时间 CUPTIME 进程还需占用的 CPU 时间 ALLTIME。当进程运行完毕时, ALLTIME 变为 0 进程的阻塞时间 STARTBLOCK,表示当进程再运行 STARTBLOCK 个时间片后,进程将 进入阻塞状态。 进程被阻塞的时间 BLOCKTIME,表示已阻塞的进程再等待 BLOCKTIME 个时间片后, 将转换成就绪状态。 进程状态 STATE. 队列指针 NEXT,用来将 PCB 排成队列。 (3) 优先数改变的原则

16、: 进程在就绪队列中呆一个时间片,优先数增加 1。 进程每运行一个时间片,优先数减 3。 (4) 假设在调度前,系统中有 5 个进程,它们的初始状态如下: ID 0 1 2 3 4 PRIORITY 9 38 30 29 0 CPUTIME 0 0 0 0 0 ALLTIME 3 3 6 3 4 文档 STARTBLOCK 2 -1 - 1 -1 -1 BLOCKTIME 3 0 0 0 0 STATE READY READY READY READY READY (5)为了清楚地观察诸进程的调度过程,程序将每个时间片的进程的情况显示出来,参照的 具体格式如下: RUNING PROG:i RE

17、ADY_QUEUE: -id1-id2 BLOCK_QUEUE: -id3-id4 ID 0 1 2 3 4 PRIORITY P0 P1 P2 P3 P4 CPUTIME C0 C1 C2 C3 C4 ALLTIME A0 A1 A2 A3 A4 STARTBLOCK T0 T1 T2 T3 T4 BLOCKTIME B0 B1 B2 B3 B4 STATE SO S1 S2 S3 S4 #i nclude #in elude using n amespace std; int i;循环值 int j;还在阻塞或就绪队列中的进程数 int s; int m; 最大 priority 的 id

18、 struct pcb int id; int p; /priority int cputime; int alltime; int startblock; int blocktime; int state; 0 表示 ready 1 表示 end -1 表示 block ; struct pcb pro5= 0,9,0,323,0, 1,38,03-1,0,0, 2,30,0,6,-1,0,0, 3,29,03-1,0,0, 4,0,0,4,-1,0,0 ; int cha ngestate0() if(pro0.startblock=0) pro0.state=-1; pro0.start

19、block-; return 1; 文档 if(pro0.blocktime=0) pro0.state=0; return 1; if(pro0.state=0&pro0.startblock!=-1) pro0.startblock-;retur n 1; if(pro0.state=-1 &pro0.blocktime!=0) pro0.blocktime-;retur n 1; int stateO() cha ngestateO(); s=pro0.p; if(pro0.state=-1) s=-100; return s; int maxp() 求出最大 prior

20、ity state0(); int max=s; m=pro0.id; for(i=0;iproi.p) max=proi+1.p; m=proi+1.id; return m; void cha nge() maxp(); int x;/得到 m 现在的数组编号 for(i=0;ij;i+) proi.p+; for(i=0;ij;i+) if(proi.id=m) x=i; prox.cputime+; 文档 prox.p=prox.p-4; prox.alltime-; if(prox.alltime=0) prox.state=1; void display。 cha nge(); c

21、outRUNNING PROG:me ndl; n; coutID ; for(i=0;ij;i+) cout.width(10); coutproi.id; coute ndlPRIORITY ; for(i=0;ij;i+) cout.width(10); coutproi.p; coute ndlCPUTIME ; for(i=0;ij;i+) cout.width(10); coutproi.cputime; coute ndlALLTIME ; for(i=0;ij;i+) cout.width(10); coutproi.alltime; coute ndlSTARTBLOCK;

22、for(i=0;ij;i+) cout.width(10); coutproi.startblock; coute ndlBLOCKTIME ; for(i=0;ij;i+)文档 cout.width(IO); coutproi.blocktime; coute ndlSTATE ; for(i=0;ij;i+) cout.width(10); coutproi.state; coute ndl; int mai n() j=5;刚开始有 5 个进程 while(j!=0) for(i=0;ij;i+) if(proi.state=1) for(;ij;i+) proi=proi+1; j=j

23、-1; display(); getchar(); 运行结果: rootlocalhost root# g+ -o c c.c rootlocalhost root# ./c RUNNING PROG:1 ID 0 PRIORITY CPUTIME ALLTIME 1 2 10 35 0 1 3 2 1 3 0 3 31 0 6 -1 -1 0 0 0 0STARTBLOCK BLOCKTIME STATE 0 4 30 1 0 0 3 4 -1 -1 0 0 0 文档 RUNNING PR0G:1 ID 0 1 2 3 4 PRIORITY 11 32 32 31 2 CPUTIME 0 2

24、 0 0 0 ALLTIME 3 1 6 3 4 STARTBLOCK 0 -1 -1 -1 -1 BLOCKTIME 3 0 0 0 0 STATE 0 0 0 0 RUNNING PR0G:1 ID 0 1 2 3 4 PRIORITY 12 29 33 32 3 CPUTIME 0 3 0 0 0 ALLTIME 3 0 6 3 4 STARTBLOCK -1 -1 -1 -1 -1 BLOCKTIME 3 0 0 0 0 STATE 1 0 0 0 RUNNING PR0G:2 ID 0 2 3 4 PRIORITY 13 30 33 4 CPUTIME 0 1 0 0 ALLTIME

25、 3 5 3 4 STARTBLOCK -1 -1 -1 -1 BLOCKTIME 2 0 0 0 STATE 0 0 0 RUNNING PR0G:3 ID 0 2 3 4 PRIORITY 14 31 30 5 CPUTIME 0 1 1 0 ALLTIME 3 5 2 4 STARTBLOCK -1 -1 -1 -1 BLOCKTIME 1 0 0 0 STATE 0 0 0 RUNNING PR0G:2 ID 0 2 3 4 PRIORITY 15 28 31 6 文档 CPUTIME 0 2 1 0 ALLTIME 3 4 2 4 STARTBLOCK -1 -1 -1 -1 BLO

26、CKTIME 0 0 0 0 STATE -1 0 0 0 RUNNING PROG:3 ID 0 2 3 4 PRIORITY 16 29 28 7 CPUTIME 0 2 2 0 ALLTIME 3 4 1 4 STARTBLOCK -1 -1 -1 -1 BLOCKTIME 0 0 0 0 STATE 0 0 0 RUNNING PROG:2 ID 0 2 3 4 PRIORITY 17 26 29 8 CPUTIME 0 3 2 0 ALLTIME 3 3 1 4 STARTBLOCK -1 -1 -1 -1 BLOCKTIME 0 0 0 0 STATE 0 0 0 RUNNING

27、PROG:3 ID 0 2 3 4 PRIORITY 18 27 26 9 CPUTIME 0 3 3 0 ALLTIME 3 3 0 4 STARTBLOCK -1 -1 -1 -1 BLOCKTIME 0 0 0 0 STATE 0 1 0 RUNNING PROG:2 ID 0 2 4 PRIORITY 19 24 10 CPUTIME 0 4 0 ALLTIME 3 2 4 STARTBLOCK -1 -1 -1 BLOCKTIME 0 0 0 文档 STATE 0 0 0 RUNNING PR0G:2 ID 0 2 4 PRIORITY 20 21 11 CPUTIME 0 5 0 ALLTIME 3 1 4 STARTBLOCK -1 -1 -1 BLOCKTIME 0 0 0 STATE 0 0 0 RUNNING PR0G:2 ID 0 2 4 PRIORITY 21 18 12 CPUTIME 0 6 0 ALLTIME 3 0 4 STARTBLOCK -1 -1 -1 BLOCKTIME 0 0 0 STATE 0 1 0 RUNNING PROG:0 ID 0 4 PRIORITY 18 13 CPUTIME 1 0 ALLTIME 2

温馨提示

  • 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
  • 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
  • 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
  • 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
  • 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
  • 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
  • 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

评论

0/150

提交评论