搜索资源列表
-
0下载:
一个关于赛程安排的算法。N支球队参加比赛进行双循环赛,给出赛程安排算法。-a leg on the arrangements for the algorithm. N Clubs double round robin tournament, scheduling algorithm for the given schedule.
-
-
0下载:
这是循环赛日程表的一个简单算法,基于C语言开发,可在TURB C下运行。,Simple round-robin schedule algorithm, based on the C language
-
-
0下载:
主要使用了时间片轮转算法和高响应比算法模拟进程的调度过程-The main use of Round Robin time slice and high response ratio algorithm simulation process for the activation process
-
-
0下载:
广州大学操作系统实验报告一
时间片轮转调度算法模拟
附件详细的实验报告,以及实验代码-Guangzhou University, the operating system time-slice experiment reports a round-robin scheduling algorithm detailed in the annex of the experimental simulation of the report and experimental code
-
-
1下载:
ARM Cortex M3及M0定制操作系统
高度可裁剪性,最小系统内核仅974Byte
支持优先级抢占和时间片轮转
自适应任务调度算法
零中断延时时间
堆栈溢出检测
信号量、邮箱、队列、事件标志、互斥等同步通信方式
支持多种编译器:ICCARM、ARMCC、GCC -Specially designed for Cortex-M series
Scalable, minimal system kernel is only 974Byte
A
-
-
0下载:
进程调度算法(FCFS,优先级算法,Round Robin算法等)-Process scheduling algorithms (FCFS, priority algorithm, Round Robin algorithm, etc.)
-
-
1下载:
Ucore是一个很小的适于学习的操作系统,此“麻雀”包含虚存管理、进程管理、处理器调度、同步互斥、进程间通信、文件系统等主要内核功能,总的内核代码量(C+asm)不会超过5K行。充分体现了“小而全”的指导思想。
这是ucore的实验4:调度器。实验目的:熟悉ucore 的系统调度器框架,以及内置的Round-Robin 调度算法;基于调度器框架实现一个调度器算法(Stride Scheduling)。文件中包括源代码、实验指导书和实验报告。-Ucore is a small operatin
-
-
0下载:
这是操作系统一个实验报告,模拟时间片轮转算法,并且可以实现周转时间的的计算,希望对各位有所帮助。-This is the operating system reports an experiment to simulate round-robin algorithm, and can achieve the calculation of turnaround time, you want to help.
-
-
0下载:
进程调度,利用时间片轮转算法来模拟计算机操作系统调度进程的过程的代码2-Process scheduling, the use of round-robin algorithm to simulate the process of computer operating system process scheduling code 2
-
-
0下载:
进程调度,利用时间片轮转算法来模拟计算机操作系统调度进程的过程的代码1-Process scheduling, the use of round-robin algorithm to simulate the process of scheduling a computer operating system code in a process
-
-
0下载:
处理机管理 各种调度算法 FCFS SJF 按时间片轮转算法-Processor scheduling FCFS SJF by round-robin algorithm, etc.
-
-
0下载:
模拟操作系统单处理机系统的进程调度过程,包括时间片轮转算法和动态优先数算法-Analog single-processor system, the operating system process scheduling process, including round-robin algorithm and dynamic priority number algorithm
-
-
0下载:
采用优先级和轮询调度算法实现模拟CPU调度-The use of priority and round-robin scheduling algorithm for CPU scheduling simulation
-
-
0下载:
设计一个有N个进程并发的进程调度程序,采用时间片轮转算法。
Ø 每一个进程用一个进程控制块PCB表示。PCB包含信息有:进程名name,进程号id,进程状态state,进程所需运行时间need_time,进程运行时间run_time。
Ø 进程所需的运行时间人为指定。进程运行时间以时间片为单位进行计算。(程序中以按任意键表示运行一次CPU时间片)
Ø 每个进程的状态有就绪W,运行R,和完成F(撤销进程)。
Ø
-
-
1下载:
处理机调度是操作系统中非常重要的部分。为深入理解进程管理部分的功能,设计时间片轮转法进行CPU调度算法,模拟实现处理机的调度。通过本次课程设计理解进程调度的概念,深入理解进程控制的功能、进程的创建与删除以及进程各个状态之间的转换过程,实现时间片轮转算法调度进程。-PROCESSING scheduling is a very important part of the operating system. For an in-depth understanding of the function
-
-
2下载:
进程调度算法的设计
设计要求:
①设计进程控制块PCB表结构,分别适用于优先数调度算法和循环轮转调度算法。
②建立进程就绪队列。对两种不同算法编制入链子程序。
③编制两种进程调度算法:1)优先数调度;2)循环轮转调度
设计技术参数参考:
①本程序用两种算法对五个进程进行调度,每个进程可有三个状态,并假设初始状态为就绪状态。
②为了便于处理,程序中的某进程运行时间以时间片为单位计算。各进程的优先数或轮转时间数以及进程需运行的时间
-
-
0下载:
本程序设计为时间片轮转算法,运用C++实现模拟时间片为1的页面调度算法。-This program is designed to round-robin algorithm, using C++ time slice is one of analog paging algorithms.
-
-
0下载:
Round robbin priority scheduling algorithm
-
-
0下载:
进程调度模拟算法 ,进程调度是处理机管理的核心内容。本实验要求用高级语言编写模拟进程调度程序,以 便加深理解有关进程控制快、进程队列等概念,并体会和了解优先数算法和时间片轮转算法 的具体实施办法。 -Process scheduling simulation algorithm, process scheduling processor is the core content management. The experiment called for the preparation proces
-
-
0下载:
通过用高级语言编写模拟进程调度程序,了解有关进程控制块、进程队列的概念,体会掌握了优先数算法和时间片轮转算法的具体实施办法,提高对进程调度的认识。2. (1)优先数调度算法程序 (2)循环轮转调度算法程序-By writing simulation process scheduler with high-level language, learn about the process control block, the concept of process queue priority numb
-