搜索资源列表
2004102130833079
- 非抢占式进程调度算法模拟C实现,-Preemptive process-scheduling algorithm simulation C realized,
diaodu
- 最短作业优先(抢占和非抢占 c语言程序基于DOS环境,是单线程工作。故要在DOS真正模仿在实际应用中的最短作业优先调度(抢占式),是难实现的。 本程序在DOS环境下实现了进程运行与程序操作的模拟同步进行。主要是应用虚拟运行算法,计算某个时候该谁占用CPU和谁已经终止了。利用虚拟运行,可以实现一种虚拟的同步操作。
jcdd
- 进程调度算法--动态优先权抢占式和时间片轮转算法的调度。-process scheduling algorithm -- Dynamic Preemptive priority and time-scheduling algorithm postings.
22
- 进程调度程序,实现fifo,sjf,抢占式优先权,时间片轮转实验。-The process of scheduling procedures to achieve fifo, sjf, Preemptive priority, time slice rotation experiment.
qk
- QP(量子换程序设计)内核~可抢占式的~占用空间小-QP (quantum change program design) may be preemptive kernel ~ of ~ a small footprint
Process
- 模拟程序通过创建、初始化、修改进程控制块模拟进程的创建、撤消、唤醒、阻塞过程。进程创建时要求模拟为进程分配内存的功能,释放进程时模拟为内存回收功能。程序支持任意多个进程的控制过程。进程调度的策略:实时进程采用基于优先权的非抢占式调度、普通进程和批处理进程采用先进先出的抢占式调度。要求输出界面清晰,每完成一次操作(创建、撤消、阻塞、唤醒)能够输出当前运行进程、就绪进程和阻塞进程的id号、进程状态、进程优先权和进程类型(实时、分时、批处理)。-Process
First-come-first-service
- 先来先服务,抢占式进程。 模拟进程调度,能够处理以下的情形: ⑴ 能够选择不同的调度算法(要求中给出的调度算法); ⑵ 能够输入进程的基本信息,如进程名、到达时间和运行时间等; ⑶ 根据选择的调度算法显示进程调度队列; ⑷ 根据选择的调度算法计算平均周转时间和平均带权周转时间。-First-come, first-served preemptive process. Analog process scheduling, able to handle the
034
- 若任务的运行方式为非抢占式的,即任务开始后不可中断,需要连续运行pi时间,请给出一个调度算法,尽量使所有任务的平均结束时间最小。-The task of running a non-preemptive, after the start of the task can not be interrupted, continuous operation pi time, please give a scheduling algorithm, as far as possible so that th
SJF
- 操作系统实验内容,实现抢占式短作业优先处理机调度,结合内存管理,内存管理采用首次适应分配算法-Experimental content of the operating system, preemptive short job priority processor scheduling, combined with the memory management, memory management using the first-fit allocation algorithm
main.cpp
- 操作系统实验中的进程调度算法之抢占式SJF算法(Preemptive shortest-job-first algorithm)