Description: 单道系统作业调度:作业调度算法:分别采用先来先服务(fcfs)、最短作业优先(sjf)、响应比高者优先(hrn)的调度算法。
多道系统作业调度:作业调度算法:采用先来先服务(fcfs),即按作业提交的先后次序进行调度。总是首先调度在系统中等待时间最长的作业。-Shan Road System Operation : Job Scheduling Algorithm : By using the first-come first-serve (fcfs) the shortest operating priority (sjf), the response is high priority (applications) scheduling algorithm. Multiple System Operation : Job Scheduling Algorithm : The first-come first-serve (fcfs) according to the work order dispatching. Scheduling is always first in the system waiting for the longest time work. Platform: |
Size: 608256 |
Author:风飘零 |
Hits:
Description: 操作系统磁盘调度算法中的SSTF最短寻道时间优先算法!输出移动臂的距离和顺序!-Disk Operating System Scheduling Algorithm of SSTF shortest tracking time priority algorithm! Mobile export boom and the distance order! Platform: |
Size: 1024 |
Author:陈秀兰 |
Hits:
Description: 用C实现多级反馈调度算法。在队列中使用FCFS,队列间使用时间片法-Using C to achieve multi-level feedback scheduling algorithm. In the queue using the FCFS, the use of queue time slice method Platform: |
Size: 1024 |
Author:lr |
Hits:
Description: CPU调度算法---模拟OS所使用的所有调度算法,包括创建一个kernel,PCB,队列,调度器等。-CPU Scheduler algorithms FCFS SJF Priority
This code is a simulation of all the Scheduling algorithms an OS uses. I have tried creating a Kernel, PCB, Queue, Scheduler etc. what all an OS needs to run and execute a piece of code. Right now the code just displays the file given to in the input, If we modify the code so that it can interpret the meaning of the file then it can execute the file and can become a sub OS or VirtualMachine like JVM Platform: |
Size: 7168 |
Author:zds |
Hits:
Description: 先来先服务(FCFS)算法、短作业优先(SJF)算法、高响应比(HRN)算法和高优先权算法来实现作业调度算法的模拟。
(1) 算法采用下式计算响应比:
等待时间waittime
需要运行时间requesttime
(2) 高优先权算法采用下述公式计算优先权:
优先权priority*等待时间waittime
需要运行时间requesttime*紧迫程度quick
-First Come First Served (FCFS) algorithm, the priority short operation (SJF) algorithm, a high response ratio (HRN) algorithm and high-priority scheduling algorithm to achieve the simulation algorithm. (1) algorithm of computing response ratio: latency time waittime need to run requesttime (2) high-priority algorithm is calculated using the following priority: the priority of the waiting time priority* need to run waittime time requesttime* degree of urgency quick Platform: |
Size: 136192 |
Author:hghh |
Hits:
Description: 先来先服务(FCFS)、短者优先(SJF)、高优先权优先(FPF)是操作系统作业调度的三种基本调度算法。本文用程序模拟这三种调度算法的过程。通过对各个进程在调度过程中参数(开始时间、完成时间、平均周转时间和平均带权时间等)的变化的记录,加深对三种调度过程的认识。-First-come, first-served (FCFS), short-preferred (SJF), a high priority priority (FPF) is the operating system, job scheduling of the three basic scheduling algorithms. In this paper program to simulate the process of the three scheduling algorithms. Through the course of the various process scheduling parameters (start time, completion time, the average turnaround time and average weighted time) record of changes to enhance the understanding of the three kinds of scheduling process. Platform: |
Size: 58368 |
Author:willism |
Hits:
Description: A scheduling algorithm,implemented in C-A scheduling algorithm,implemented in C++ Platform: |
Size: 973824 |
Author:Akash Shrivastava |
Hits:
Description: 由C编写的实现os进程FCFS和SJF两种算法调度-Written in C to achieve os process FCFS and SJF two algorithms scheduling Platform: |
Size: 2048 |
Author:Natureli |
Hits:
Description: 1)在Linux下用C语言编程模拟优先级程调度算法。为了清楚地观察每个进程的调度过程,程序将每个时间片内的进程情况显示出来。2)进程控制块是进程存在的唯一标志,因此,在模拟算法中每一个进程用一个进程控制块PCB来代表,PCB用一结构体表示。3)进程在运行过程中其状态将在就绪、执行、完成几种状态之间转换,同时进程可能处于不同的队列中,如就绪队列。在优先级调度算法中,选择单向队列,入队既是将进程控制块插入队尾,出队既是按优先级重新排列的队,删除队头元素。4)为了便于处理,程序中的某进程运行时间以时间片为单位计算。各进程的优先级认为输入,运行所需时间随机产生。5)优先权调度算法采用动态优先权,进程每运行一个时间片,优先数减1;进程在就绪队列等待一个时间单位,优先数加1。6)对于遇到优先权一致的情况,采用FCFS策略解决。7)由于是模拟进程调度,所以,对被选中的进程并不实际启动运行,而是修改进程控制块的相关信息来模拟进程的一次运行。-1) Linux emulation priority process scheduling algorithm using C language programming. In order to clearly observe the scheduling process for each process, the program will process each time slice is displayed inside the case. 2) process control block is the only sign of the existence of the process, therefore, in the simulation algorithm each process with a process control block PCB to represent, PCB represented by a structure. 3) processes in operation status will be ready to perform, to complete the conversion between several states, while the process may be in different queues, such as the ready queue. In priority scheduling algorithm, choose unidirectional queue, the team is not only a process control block into the tail, the team both teams prioritized rearrange, remove the head elements. 4) In order to facilitate processing, the program run time of a process to calculate the time-piece. The priority of each process that the desired input, run-time generated randomly. 5) priority Platform: |
Size: 2048 |
Author:王海鹏 |
Hits: