搜索资源列表
-
2下载:
The main purpose of this project is to add a new scheduling algorithm to GeekOS and to implement a simple synchronization primitive (semaphore). As you might have already noticed, GeekOS uses a simple priority based preemptive Round Robin algorithm.
-
-
0下载:
Round-robin scheduling algorithm is one of the simplest scheduling algorithms. It is designed especially for time-sharing systems. The ready queue is treated as a circular queue. The algorithm assigns a time slice(also called time quantum) to each pr
-
-
0下载:
Round Robin process scheduling algorithm simulation in C++. Good for process scheduling study
-
-
0下载:
VC环境下,用时间片轮转调度算法模拟处理机调度实验-Round-Robin Scheduling Algorithm for Time-chip processor scheduling simulation experiment
-
-
0下载:
1)程序主界面可选择进程调度算法进行演示,其中调度算法包括:时间片轮转法,短作业优先算法,动态优先级算法。
2)然后进入子界面可选择进程数量和输入进程运行所需要的时间。
3)每个进程的优先数由随机函数产生且优先数随等待时间而变化,执行并显示结果。
-1) The program can choose the main interface shows the process of scheduling algorithm, scheduling algorithm which incl
-
-
0下载:
Linux单处理机系统的进程调度,时间片轮转算法,-Linux single processor system, process scheduling, round-robin algorithm,
-
-
0下载:
Linux OS Java-based round-robin scheduling algorithm.
-
-
0下载:
一、在WINDOWS中双击DEBUG目录中的EXE文件直接运行,可能会没有显示结果窗口就关闭了,这不是程序错误,解决方法是:
1、“开始->程序->附件-命令提示符”,打开DOS命令窗口。
2、改变当前目录至EXE文件所在目录;(或者将EXE文件和测试用的文本文件一并复制到当前目录)。
3、输入EXE文件的完整名称(含后缀名)运行即可。(为方便输入,可以重命名EXE文件。)
二、 本程序包括:FIFO,优先级调度算法(静态优先级),时间
-
-
0下载:
在MFC界面显示调度算法,包括先来先到,短作业优先,高响应比,时间片轮转算法的演示。-MFC interface to display the scheduling algorithm, including a first-come first short job priority, high response ratio, round-robin algorithm demonstration.
-
-
0下载:
设计进程 控制块PCB表结构,分别适用于优先数调度算法和循环轮转调度算法。-The design process of the process control block PCB table structure, were applied to the number of priority scheduling algorithms and round-robin scheduling algorithm.
-
-
0下载:
fifo测试算法,round robin测试算法,linux内核-the FIFO test algorithm, Round robin test algorithm, linux kernel
-
-
0下载:
操作系统进程调度,通过时间片轮转算法实现了处理机的调度。-Operating system process scheduling, through the round-robin algorithm to achieve a processor scheduling.
-
-
0下载:
Round Robin and First come first served Scheduling algorithms
-
-
0下载:
采用“最高优先级优先”调度算法对五个进程进行调度和采用“轮转法”调度算法对五个进程进行调度。-A " highest priority priority" scheduling algorithm for five scheduling process and the use of " round-robin" scheduling algorithm for five scheduling process.
-
-
0下载:
有n个进程处于就绪状态,有m个进程处于阻塞状态。采用轮转法进程调度算法进行调度(调度过程中,假设处于执行状态的进程不会阻塞),且每过t个时间片系统释放资源,唤醒处于阻塞队列队首的进程-There are n processes in the ready state, there are m process is blocked. Process scheduling algorithm using round robin scheduling (scheduling process, it is
-
-
0下载:
阅读并调试一个采用“最高优先级优先”调度算法对六个进程进行调度的模拟程序。通过对本程序的阅读,可以加深对进程概念及进程调度算法的理解。进程调度算法的重点是掌握优先级算法youxian()和轮转算法RoundRobin()。优先级算法又分为静态优先级算法和动态优先级算法。本程序主要采用了优先级调用算法。具体程序分析和要求可以参考《计算机操作系统陆丽娜版》-Read and debug a use of " highest priority priority" scheduling
-
-
0下载:
时间片轮转算法完成进程的调度。
设计要求:
1) 进程的调度采用时间片轮转算法。
2) 设计三个链队列,分别用来表示运行队列、就绪队列和完成队列。
3) 用户输入进程标识符以及进程所需的时间,申请空间存放进程PCB信息。
4) 输出的格式和上面的运行结果分析中的格式相同。
5) 写出程序,调试通过,并进行运行结果分析。
-Time slice rotation algorithm to complete the process of scheduling.
The
-