搜索资源列表
1
- 设计一个按优先数调度算法实现处理器调度的程序。 [提示]: (1) 假定系统有5个进程,每个进程用一个PCB来代表。PCB的格式为: 进程名、指针、要求运行时间、优先数、状态。 进程名——P1~P5。 指针——按优先数的大小把5个进程连成队列,用指针指出下一个进程PCB的首地址。 要求运行时间——假设进程需要运行的单位时间数。 优先数——赋予进程的优先数,调度时总是选取优先数大的进程先执行。 状态——假设两种状态,就绪,用R表示,和结束,用E表示。初始状态都为就绪
处理机调度
- 这是一个模拟操作系统中进程控制的程序,用时间片轮转算法实现,附带试验报告-This is a simulated operating system process control procedures, time-flow algorithm, fringe Test Report
操作系统2
- 本程序是操作系统的处理机调度问题的c原代码包括三种调度算法:时间片轮转法,短作业优先算法,动态优先级算法-this process is the operating system processor scheduling problems c original code includes three Scheduling Algorithm : Time Web tablets, short operating priority algorithms, dynamic priority algo
操作系统实习报告
- 全面包含操作系统课程设计中处理机调度,主存空间和磁盘空间的分配和回收的实验报告和源程序.-operating system contains a comprehensive curriculum design, processor scheduling, main memory space and disk space allocation and recovery of the experimental reports and the source.
处理机调度1.RAR
- 操作系统的处理机调度算法:提供了FIFS、SFJ、HRN、时间片轮转算法的实现算法-operating system processor scheduling algorithms : a FIFS, SFJ, 010-001, time-rotate algorithm Algorithm
cpu
- 操作系统实验,处理机调度算法,用vc做的,很全面的-Experimental operating system, processor scheduling algorithm, using vc done, very comprehensive
chulijidiaodushiyanbaogao
- 操作系统处理机调度实验报告,包括优先权调度算法和时间片轮转算法的源码、设计思想和程序结果截屏-Processor Scheduling experimental operating system, including priority scheduling algorithm and the time slice Round Robin source, design ideas and the results of the proceedings Screenshots
deal
- 操作系统实验 处理机调度 实验一(包含程序源代码和完整报告)-Experimental operating system processor scheduling experiment (including source code and complete report)
1
- 操作系统处理机调度课程设计,老实说不错的,我已经用过-Operating system processor scheduling curriculum design, good honest, I have used
os
- 操作系统的四大功能的模拟,分别进行进程管理、处理机调度(作业调度)、存储管理(页面调度)以及设备管理(磁盘调度)-The four functions of the operating system simulation, separately for the process management, processor scheduling [job scheduling], memory management [paging], and equipment management [disk s
ProcessorScheduling
- 操作系统课程设计~处理机调度 模拟一种多任务(或多用户)(多道)批处理操作系统(包含处理器管理、存储管理、进程管理。-Operating System Course Design ~ processor scheduling simulation of a multi-tasking (or multi-user) (multi-channel) batch processing operating system (including processor management, storage
djfk
- 关于操作系统处理机调度方面的一个小程序。没事看看挺好,多级反馈队列的-With regard to operating system, processor scheduling in a small program, nothing to look quite good
gongchao
- 操作系统的处理机调度算法实现,最简便的算法实现-Operating system, processor scheduling algorithm, the most simple algorithm
pcb
- 操作系统处理机调度,高优先级调度算法。模拟处理机调度的过程,每运行一次优先级自动减1-Operating system, processor scheduling, high-priority scheduling algorithm. Analog processor scheduling process, each run by a first-priority Auto
shoucishiyingsuanfawanzhengban
- 操作系统处理机调度算法之一,这是首次适应算法的完整版,保证百分百正确,敬请下载-One of the operating system processor scheduling algorithm, which is the full version of first-fit algorithm to ensure hundred percent correct, please download the
operator
- 操作系统课程设计,C语言实现的处理机调度程序,有源代码和报告-Operating systems curriculum design , C language implementation of the processor, scheduler source code and reports
11111
- 操作系统-----处理机调度算法的实现-Operating system processor scheduling algorithm implemented-----
caozuoxitongP
- 操作系统处理机调度,根据优先级来进行调度,完整-Operating system, processor scheduling, priority scheduling has been completed
计算机操作系统实验三
- 进程调度算法:采用最高优先数优先的调度算法(即把处理机分配给优先数最高的进程)和先来先服务算法。 每个进程有一个进程控制块( PCB)表示。进程控制块可以包含如下信息:进程名、优先数、到达时间、需要运行时间、已用CPU时间、进程状态等等。 进程的优先数及需要的运行时间可以事先人为地指定(也可以由随机数产生)。进程的到达时间为进程输入的时间。进程的运行时间以时间片为单位进行计算。每个进程的状态可以是就绪 W(Wait)、运行R(Run)、或完成F(Finish)三种状态之一。就绪进程获得 CPU后
操作系统课程设计
- 操作系统课程设计——进程调度,存储器管理,处理机调度,虚拟存储器管理的模拟实现