文件名称:CX

介绍说明--下载内容均来自于网络,请自行研究使用

设计一个按优先数调度算法实现处理器调度的程序

提示:

(1)假定系统有5个进程,每个进程用一个PCB来代表。PCB的格式为:

进程名、指针、要求运行时间、优先数、状态。

进程名——P1~P5。

指针——按优先数的大小把5个进程连成队列,用指针指出下一个进程PCB的首地址。

要求运行时间——假设进程需要运行的单位时间数。

优先数——赋予进程的优先数,调度时总是选取优先数大的进程先执行。

状态——假设两种状态,就绪,用R表示,和结束,用E表示。初始状态都为就绪状态。

(2) 每次运行之前,为每个进程任意确定它的“优先数”和“要求运行时间”。

(3) 处理器总是选队首进程运行。采用动态改变优先数的办法,进程每运行1次,优先数减1,要求运行时间减1。

(4) 进程运行一次后,若要求运行时间不等于0,则将它加入队列,否则,将状态改为“结束”,退出队列。

(5) 若就绪队列为空,结束,否则,重复(3)。

-Design a number of priority scheduling algorithm processor scheduling program

  Tip :

( 1 ) The system has five processes, each represented by a PCB . PCB format:

Process name , pointer, run-time requirements , priority number , status.

Process name- P1 ~ P5.

Pointer- according to the size of the five priority number into程连成queue pointer pointed to the next process PCB first address .

The time required to run- assuming unit time required to run several processes .

Priority number- the number of priority given to the process , always select a large number of priority scheduling process executed first .

State- assuming two states , Ready, represented by R , and end with E said . The initial state are ready state.

( 2 ) Before each run , for each process arbitrarily determine its " priority number " and " run-time requirements ."

( 3 ) the processor is always selected first team processes running . Change the priority number of dynamic way to run a process every time , prior
(系统自动生成,下载前可以参看下载内容)

下载文件列表





CX.c

相关说明

  • 本站资源为会员上传分享交流与学习,如有侵犯您的权益,请联系我们删除.
  • 本站是交换下载平台,提供交流渠道,下载内容来自于网络,除下载问题外,其它问题请自行百度更多...
  • 请直接用浏览器下载本站内容,不要使用迅雷之类的下载软件,用WinRAR最新版进行解压.
  • 如果您发现内容无法下载,请稍后再次尝试;或者到消费记录里找到下载记录反馈给我们.
  • 下载后发现下载的内容跟说明不相乎,请到消费记录里找到下载记录反馈给我们,经确认后退回积分.
  • 如下载前有疑问,可以通过点击"提供者"的名字,查看对方的联系方式,联系对方咨询.

相关评论

暂无评论内容.

发表评论

*主  题:
*内  容:
*验 证 码:

源码中国 www.ymcn.org