搜索资源列表
实验一 进程、线程的控制
- 设计一个有 N个进程共行的进程调度程序。 进程调度算法:采用最高优先数优先的调度算法(即把处理机分配给优先数最高的进程)和时间片轮转调度算法。 每个进程由一个进程控制块( PCB)表示。进程控制块可以包含如下信息:进程名、优先数、到达时间、需要运行时间、已用CPU时间、进程状态等等。 -design is a process of a total of N line in the process scheduler. Process Scheduling Algorithm : T
myos1
- 这是一个处理机的调度程序 用C语言写的,只是简单的模拟了一下处理机的过程
chuliji
- 这也是一个处理机的调度程序,是学习操作系统的必作程序,应该对大学生们有点作用吧
轮转法调度
- 处理机调度:按轮转法调度算法 随机产生进程的个数及到达时间。-Processor Scheduling : Web Act by scheduling algorithm randomly generated number and the process of arrival time.
osexperimentcode
- 处理机进程调度模拟,基于优先权的调度算法和基于先来先服务的调度算法-Processor process scheduling simulation, based on priority scheduling algorithm and a first-come first-served scheduling algorithm
Operating-System-visal--file-System
- 将操作系统的四个实验进行合成,组成界面,用于实现操作系统的四大功能的模拟,分别进行进程管理、处理机调度(作业调度)、存储管理(页面调度)以及设备管理(磁盘调度)。-The four experiments operating system synthesis, composition interface, the operating system used to implement the four functions of the simulation, respectively, for p
64231585
- 进程调度是处理机管理的核心内容,本实验要求用C语言编写和调试一个简单的进程调度程序()