搜索资源列表
硬盘结构及其分区简介
- 模拟操作系统中作业调度算法的vc++程序。从好几个方面描述了os的作业调度问题。 -simulation operating system scheduling algorithm vc procedures. From several aspects described os operations scheduling problem.
电梯调度算法
- 51实现电梯控制程序,用于控制电梯上下 有判定功能 调试通过-achieve elevator control procedures for the control of the lift with both determined by functional testing
processmanagerment
- 设计一个允许n个进程并发运行的进程管理模拟系统。该系统包括有简单的进程控制、同步与通讯机构,其进程调度算法可任意选择。每个进程用一个PCB表示,其内容根据具体情况设置。各进程之间有一定的同步关系(可选)。系统在运行过程中应能显示或打印各进程的状态及有关参数的变化情况,以便观察诸进程的运行过程及系统的管理过程。
ProcessScheduling
- 一、目的要求 用高级语言编写和调试一个进程调度程序,以加深对进程的概念及进程调度算法的理解。 二、例题: 设计一个有 N个进程共行的进程调度程序。 进程调度算法:采用最高优先数优先的调度算法(即把处理机分配给优先数最高的进程)和先来先服务算法。 每个进程有一个进程控制块( PCB)表示。进程控制块可以包含如下信息:进程名、优先数、到达时间、需要运行时间、已用CPU时间、进程状态等等。
DISPLAY.rar
- AVR Mega128 按键菜单显示程序 源码 采用定时器调度算法 ,AVR Mega128 button menu display program source code using timer scheduling algorithm
基于51单片机的内核调度算法
- 51内核, 基于51单片机的内核调度算法,并成功实现调度任务切换-51 cores, 51 single-chip core-based scheduling algorithms, and scheduling tasks to achieve a successful switch
cipandiaodu
- 在先来先服务调度算法(FCFS),最短寻道时间优先调度算法(SSTF),循环扫描算法(SCAN)中选择一个适合的磁盘调度算法完成磁盘查找内容。-First come first serve scheduling algorithm (FCFS), priority scheduling algorithm for the shortest seek time (SSTF), cycle scan algorithm (SCAN) to select a suitable disk schedul
FCFSandSPF-basedprocessmanagementsystem
- 课程设计的目的 本设计的目的是:加深对进程概念及进程管理各部分内容的理解;熟悉FCFS和SPF两种进程调度算法。 课程设计的要求 (1)设计一个完整的进程调度系统,系统中至少包括5个进程;(2)定义PCB; (3)采用链表管理就绪队列; (4)结果要能够显示出进程的调度序列及进入系统的时间、运行时间等必要信息。-The purpose of the curriculum design of the purpose of this design are: better unde
CPU_Schedu
- 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
shiyancode
- 设计一个有 N个进程共行的进程调度程序。 进程调度算法:采用最高优先数优先的调度算法(即把处理机分配给优先数最高的进程)和先来先服务算 法。 每个进程有一个进程控制块( PCB)表示。进程控制块可以包含如下信息:进程名、优先数、到达时间、 需要运行时间、已用CPU时间、进程状态等等。
OperatingSystemProcessScheduling
- 1)设计有5个进程并发执行的模拟调度程序,每个程序由一个PCB表示。 2)模拟调度程序可任选两种调度算法之一实现(有能力的同学可同时实现两个调度算法)。 3)程序执行中应能在屏幕上显示出各进程的状态变化,以便于观察调度的整个过程。 -1) the design of five concurrent implementation of the simulation process scheduler, each process of a PCB said. 2) simulation
chuliqidiaodu
- (1)设计一个有N个进程共行的进程调度程序。每个进程由一个进程控制块 PCB表示。进程控制块包括以下信息:进程名,进程优先数,进程需要运行的时间,占用CPU的时间以及进程的状态等。 (2)本调度程序用时间片轮转算法。 (3)编写程序并调试运行。 -(1) design a process, a total of N lines of the process scheduler. Each process consists of a process control bloc
Priority
- 优先数调度算法实现处理器调度,每个进程有一个进程控制块( PCB)表示。进程控制块可以包含如下信息:进程名、优先数、需要运行时间、已用CPU时间、进程状态等等。 -The number of processor scheduling priority scheduling algorithm, each process has a process control block (PCB) said. Process control block can contain the following i
test_scheduler
- 实现了处理机调度--实时调度算法EDF和RMS这两种经典调度算法-Implements processor scheduling- Real-time scheduling algorithm EDF and RMS scheduling algorithm for the two classical
CAN
- CAN总线中EDF调度算法的改进CAN bus EDF Scheduling Algorithm-CAN bus EDF Scheduling Algorithm
Processor-scheduling
- 设计一个按优先数调度算法实现处理器调度的进程-Design a number of priority scheduling algorithm processor scheduling process
Test
- 一、实验目的 (1)掌握进程状态转换过程 (2)掌握时间片轮转的进程调度算法; (3)掌握带优先级的进程调度算法; 二、实验内容 (1)自定义PCB的数据结构; (2)使用带优先级的时间片轮转法调度进程,每运行一个时间片,优先级减半。 (3)命令集 A)create 随机创建进程,进程的优先级与所需要的时间片随机决定; B)round 执行1次时间片轮转操作,其方法为运行高优先级队列的第1个,再降低其优先级,插入到相应的队列中。 C)ps 查看当前进程状态
OSTest3
- 1. 本实验是模拟操作系统的磁盘寻道方式,运用磁盘访问顺序的不同来设计磁盘的调度算法。实现的磁盘调度算法有FCFS,SSTF,SCAN,CSCAN和 NStepSCAN算法。 -A. This experiment is a simulation of the operating system disk seek ways to use different disk access order to design a disk scheduling algorithm. Implementat
时间触发嵌入式系统设计模式英文版
- 本书主要内容包括: 针对使用一个或多个微控制器的嵌入式应用,设计实现完整的调度操作系统。 采用开关、键盘、LED显示、LCD等元件创建用户界面。 有效地使用网络和通信协议。 在监控系统设计中应用PID算法脉冲宽度调制。 本书特点: 通过列举大量 的例子来说明如何将特定模式应用到实际项目中。 在相关的上包括了众多的详细案例研究。(The main contents of this book include: For the embedded applications using o