搜索资源列表
-
0下载:
多任务系统中,内核负责管理各个任务,或者说为每个任务分配CPU时间,并且负责任务之间的通讯。内核提供的基本服务
以使用实时内核可以大大简化应用系统的设计,是因为实时内核允许将应用分成若干个任务,由实时内核来管理它们。内核
用程序的额外负荷,代码空间增加ROM的用量,内核本身的数据结构增加了RAM的用量。但更主要的是,每个任务要有自己的
吃起内存来是相当厉害的。内核本身对CPU的占用时间一般在2到5个百分点之间。
UC/OS-II有一个精巧的内核调度算法,实时内核精小,执行效率高,
-
-
0下载:
此为操作系统实验报告: scan,cscan算法模拟磁盘调度 内含:程序流程图 设计思路 主要源码等等。 简介:磁盘是一种高速、大容量、旋转型、可直接存取的存储设备。它作为计算机系统的辅助存储器,担负着繁重的输入输出任务、在多道程序设计系统中,往往同时会有若干个要求访问磁盘的输入输出请求等待处理。系统可采用一种策略,尽可能按最佳次序执行要求访问磁盘的诸输入输出请求。-operating system for this experiment : scan, cscan scheduling alg
-
-
0下载:
基于权限轮转的任务调度算法,主要是适用于linux的操作系统,希望对大家有帮助-Based on the authority of the rotary task scheduling algorithm, mainly is suitable for the Linux operating system, and we want to help
-
-
0下载:
利用贪心算法从而实现了任务调度问题的过程,Greedy algorithm- the task scheduling problem
-
-
0下载:
调度问题的回溯算法,算法中的经典问题。问题描述:假设有n个任务由k个可并行工作的机器完成。完成任务i需要的时间为ti。试设计一个算法找出完成这n个任务的最佳调度,使得完成全部任务的时间最早。-Scheduling problem backtracking algorithm is the classic problem. Problem Descr iption: Suppose there are n-task by the k-parallel machine can be complete
-
-
1下载:
假设有n个任务由k个可并行工作的机器完成。完成任务i需要时间为Ti。试设计一个算法找出完成这n个任务的最佳调度,使得完成全部任务的时间最早。
-Suppose there are n-task by the k-parallel machine can be completed. I need time to complete the task Ti. Try to design an algorithm to find completing these n-best task schedu
-
-
0下载:
并行分布式任务调度算法实现,运行于LINUX平台,有详细的源码-Distributed task scheduling parallel algorithm, running on the LINUX platform, the source in detail
-
-
0下载:
网格环境下的Min_Min任务调度算法的研究,
利用SIMGRID模拟,在LINUX环境下运行,MIN_MIN任务调度算法的研究-Grid Task Scheduling Algorithm Min_Min of the study, the use of SIMGRID simulation run in the LINUX environment, MIN_MIN Task Scheduling Algorithm
-
-
0下载:
实现网格中含有依赖任务调度的GS算法,其中根据任务在各个机器上的执行时间和任务之间的依赖关系来计算出任务的调度顺序-The realization of the grid containing the GS-dependent task scheduling algorithm, in which the task in accordance with the implementation of the various machines on time and task-dependent re
-
-
0下载:
ARM Cortex M3及M0定制操作系统
高度可裁剪性,最小系统内核仅974Byte
支持优先级抢占和时间片轮转
自适应任务调度算法
零中断延时时间
堆栈溢出检测
信号量、邮箱、队列、事件标志、互斥等同步通信方式
支持多种编译器:ICCARM、ARMCC、GCC -Specially designed for Cortex-M series
Scalable, minimal system kernel is only 974Byte
A
-
-
1下载:
An example of heurestic NEH algorithm implemented for task scheduling in C-An example of heurestic NEH algorithm implemented for task scheduling in C++
-
-
0下载:
基于轮转的任务调度算法,主要是适用于linux的操作系统,希望对大家有帮助-Based on the rotary task scheduling algorithm, mainly is suitable for the Linux operating system, and we want to help
-
-
0下载:
实验任务
设计一个程序,根据不同的调度算法模拟操作系统对进程的调度。
调度算法: 时间片循环法
1、 设计进程控制块PBC表结构,适用循环时间片轮转算法。
2、 PBC结构通常包括以下信息:进程名、进程优先数、轮转时间片、进程的CPU时间,进程状态等。根据调度算法不同,PCB结构可作适当的调整。
3、 建立进程队列。对不同的算法编制不同的入链程序。
程序要求达到的运行效果:在设置好进程数量、调度算法后,系统能按设定的参数运行,并在屏幕上交替显示就绪队列和完成队列的进程名等
-
-
0下载:
任务调度算法。依据严蔚敏C数据结构编写,可作为数据结构实验的源代码。使用C++编写。包括一个头文件一个cpp文件。用于模拟CPU事件任务到达的处理流程。-Task scheduling algorithm. Based YanWeiMin C data structures to prepare, can be used as the experimental data structure of the source code. Use C++ writing. Including a head
-
-
0下载:
操作系统课程设计,完整的MFC 工程源码
课程设计题目:进程/作业调度
实现要求:
1. 建立作业的数据结构描述
2. 使用两种方式产生作业/进程: (a)自动产生 (b)手工输入
3. 在屏幕上显示每个作业/进程的执行情况。
4. 时间的流逝可用下面几种方法模拟:(a)按键盘,每按一次可以认为过一个时间单位 (b)响应WM_TIMER (本实验采用b方法)
5. 计算并显示一批作业/进程的周转时间,平均周转时间,带权周转时间,平均带权周转时间。
6. 将一批作业
-
-
0下载:
里面有两个算法,一个是操作系统的任务调度算法,还有一个是冒泡排序算法-There are two algorithms, one is the operating system, task scheduling algorithm is another bubble sort algorithm
-
-
2下载:
①设计进程控制块PCB表结构(与实验一的结构相同),分别适用于优先数调度算法和循环轮转调度算法。
②建立进程就绪队列。对两种不同算法编制入链子程序。
③编制两种进程调度算法:1)优先数调度;2)循环轮转调度-Design process control block, PCB table structure and the structure are the same, respectively, applicable to the number of priority schedulin
-
-
1下载:
粒子群算法,以云环境下的任务调度算法为例,在cloudsim仿真平台进行,java(pso algorithm ,Task Scheduling Algorithm Based on PSO Under Cloud Environment
Algorithm design.)
-
-
1下载:
学术实验,云环境下的任务调度算法,基于遗传算法与粒子群算法相结合的调度算法(Task Scheduling Algorithm Based on DO-GAPSO Under Cloud Environment,Academic experiment,it is used to verify the effect of the experiment.)
-
-
6下载:
边缘计算任务卸载与资源调度的算法,是论文的源代码,具有价值(Edge computing task unloading and resource scheduling algorithm, is the source code of the paper, has value)
-