搜索资源列表
System2
- 操作系统实验之一,模拟进程状态,包含新建、挂起、休眠、恢复等。-experimental operating system, a state process simulation, including new construction, 1-2 dormancy and restoration.
Dijkstra
- 本程序主要对操作系统中的死锁预防部分的理论进行实验。设计一个程序,该程序可对每一次资源申请采用银行家算法进行分配。 1) 设计多个资源:10; 2) 设计多个进程:8 ; 3) 设计银行家算法相关的数据结构; 4) 动态进行资源申请、分配、安全性检测并给出分配结果 -This procedure focused on the prevention of deadlock in the operating system part of the theory of the exp
2
- 进程调度的算法 源代码 在操作系统理论课中需要的实验源代码 已测试 课正常运行-Process scheduling algorithm source code in the operating system need to test theory courses in the test class source code has been running
生产者消费者问题
- 一个大小为3的缓冲区,初始为空 2个生产者 随机等待一段时间,往缓冲区添加数据, 若缓冲区已满,等待消费者取走数据后再添加 重复6次 3个消费者 随机等待一段时间,从缓冲区读取数据 若缓冲区为空,等待生产者添加数据后再读取 重复4次