循环调度
我正在尝试回答这个问题如果有人可以帮忙的话 多道程序设计系统使用循环调度策略,时间片为 5 个时间单位。
下面描述的过程在时间 0 到达:
CPU 突发 – 8 个时间单位
I/O 突发 – 10 个时间单位
CPU 突发 – 13 个时间单位
I/O 突发 – 10 个时间单位
CPU 突发 – 7 个时间单位
回答以下问题:
描述进程生命周期中的事件以及它将经历的状态转换。对于每种类型的状态转换,请指出它是否是自愿的,并证明你的答案是合理的。假设该进程在所提供的三个 CPU 突发中完成其执行。 Cplt - 完成
这是我的尝试
Cplt Cplt Cplt
| P1 | P2 | P3 | P4 | P5 | P1 | P2 | P3 | P4 | P5 | P3 |
0 5 10 15 20 25 28 33 38 43 45 48
事件;新->准备好->等待->运行->终止
I was trying to answer this questions If anyone can help please
A multiprogramming system uses the Round Robin scheduling policy with a quantum of 5 time units.
A process described below arrives at time 0:
CPU burst – 8 time units
I/O burst – 10 time units
CPU burst – 13 time units
I/O burst– 10 time units
CPU burst – 7 time units
Answer the following questions:
Describe the events in the process lifetime, and the state transitions it will undergo. For every type of state transition indicate whether it is voluntary or not, and justify your answer. Assume that the process completes its execution in the three CPU bursts presented.
Cplt - Complete
this was my attempt
Cplt Cplt Cplt
| P1 | P2 | P3 | P4 | P5 | P1 | P2 | P3 | P4 | P5 | P3 |
0 5 10 15 20 25 28 33 38 43 45 48
Events ; New -> Ready -> waiting -> runing -> Terminated
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我给你我的解决方案,但我不知道我是否完全理解这个问题。
I give you my solution, but I don't know if I understand the problem at all.