24李后浪实验四进程调度..doc

  1. 1、本文档共11页,可阅读全部内容。
  2. 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
  3. 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载
  4. 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
24李后浪实验四进程调度.

实验报告 实验项目名称:进程调度 实验时间:2014.5.5 实验室: K4-406 指导老师:李 芳 一实验目的 C语言编写和调试一个简单的进程调度程序。通过本实验可以加深理解有关进程控制块、进程队列的概念,并体会和了解优先数和时间片轮转调度算法的具体实施办法。 二、实验内容 ①本程序用两种算法对五个进程进行调度,每个进程可有三个状态,并假设初始状态为就绪状态。 ②为了便于处理,程序中的某进程运行时间以时间片为单位计算。各进程的优先数或轮转时间数以及进程需运行的时间片数的初始值均由用户给定。 ③在优先数算法中,优先数可以先取值为98,进程每执行一次,优先数减3,CPU时间片数加1,进程还需要的时间片数减1。在轮转算法中,采用固定时间片(即:每执行一次进程,该进程的执行时间片数为已执行了2个单位),这时,CPU时间片数加2,进程还需要的时间片数减2,并排列到就绪队列的尾上。 ④对于遇到优先数一致的情况,采用FIFO策略解决。 三、实验过程 程序修改前,优先数算法中,优先级为50,时间片为1,在轮转算法中,固定时间片为2: 源程序为: #includestdio.h #include dos.h #includestdlib.h #includeconio.h #includeiostream.h #define P_NUM 5 #define P_TIME 50 enum state{ ready, execute, block, finish }; struct pcb{ char name[4]; int priority; int cputime; int needtime; int count; int round; state process; pcb * next; }; pcb * get_process(); pcb * get_process(){ pcb *q; pcb *t; pcb *p; int i=0; coutinput name and timeendl; while (iP_NUM){ q=(struct pcb *)malloc(sizeof(pcb)); cinq-name; cinq-needtime; q-cputime=0; q-priority=P_TIME-q-needtime; q-process=ready; q-next=NULL; if (i==0){ p=q; t=q; } else{ t-next=q; t=q; } i++; } //while return p; } void display(pcb *p){ coutname cputime needtime priority stateendl; while(p){ coutp-name; cout ; coutp-cputime; cout ; coutp-needtime; cout ; coutp-priority; cout ; switch(p-process){ case ready:coutreadyendl;break; case execute:coutexecuteendl;break; case block:coutblockendl;break; case finish:coutfinishendl;break; } p=p-next; } } int process_finish(pcb *q){ int bl=1; while(blq){ bl=blq-needtime==0; q=q-next; } return bl; } void cpuexe(pcb *q){ pcb *t=q; int tp=0; while(q){ if (q-process!=finish){ q-process=ready; if(q-needtime==0){ q-process=finish; } } if(tpq-priorityq-process!=finish){ tp=q-priority; t=q; } q=q-next; } if(t-needtime!=0){ t-priority-=3; t-needtime

文档评论(0)

gangshou + 关注
实名认证
内容提供者

该用户很懒,什么也没介绍

1亿VIP精品文档

相关文档