搜索资源列表
virtual-dusk
- 申请一个10M的文件空间虚拟成一个磁盘,按照1K大小划分扇区,依序编号,实现单卷单级目录的文件系统。 根据文件分配方案设计相应的FCB结构,空闲空间管理结构,磁盘卷总信息结构,目录区信息结构等,存放在虚拟磁盘的相应区域 编写管理程序,实现对虚拟磁盘的全权控制,犹如针对真实磁盘使用模式类似DOS或者Linux的终端方式 本文简单介绍了磁盘文件格式FAT及其他相关背景和算法,并采用FAT方案实现单卷、单级目录的虚拟文件系统。描述了整个程序的基本思路模块划分、流程图及代码的实现。-appl
process
- 一、 进程控制 目的:利用简单的结构和控制方法模拟进程结构、进程状态转换和进程控制。 方法:用PCB表示整个进程实体,利用键盘交互式命令控制方法模拟进程执行中产生的事件。 -First, the process control purposes: the use of a simple structure and control method for simulation of the process structure, process state transitions and
005
- 對於一般不懂可變結構控制的人員而言,此程式可以快速理解,並針對程式註解有詳細解釋,讓使用者快速上手-Do not understand for the average variable structure control of personnel, this program can quickly understand and program notes for a detailed explanation, allows users to quickly get started
009
- 將單輸入單輸出系統應用在可變結構控制上,程式將可變結構的方式應用在內,並附上註解方便研究與理解-Single-input single-output system used in variable structure control, variable structure of the program will apply the included, together with notes to facilitate research and understanding
020
- 以單輸入單輸出探討輸出可變結構控制的使用,對於使用者可以更能了解控制響應-SISO to explore the output variable structure control the use, for a better understanding of the user can control the response
Vmm
- 操作系统分析JCINX的内存管理单元V-#ifndef __DEF_VMM_H__ #define __DEF_VMM_H__ //! Magic number to identify a memory block for kernel space. #define MCB_MAGIC *((unsigned long*)"$MCB") //! Magic number to identify a memory block for user mode space. #
IDE_read_and_write
- 分析了IDE接口硬盘控制寄存器模型;论述了IDE接口硬盘的读写几项技术;给出了设计硬盘克 隆软件的思想和方法,方法针对硬盘物理扇区进行读写,与硬盘上安装的具体操作系统的类型无关,并与硬 盘驱动器的物理结构无关。-Analysis of the IDE hard disk interface control register model discusses the IDE interface hard disk read and write a number of technologie
first
- (1)用C语言来实现对N个进程采用动态优先权优先算法的进程调度; (2)每个用来标识进程的进程控制块PCB用结构来描述,包括以下字段: 进程标识数id; 进程优先数priority,并规定优先数愈大的进程,其优先权越高; 进程已占用的CPU时间cputime 进程还需占用的CPU时间alltime,当进程运行完毕时,alltime变为0; 进程的阻塞时间startblock,表示当进程在运行startblock个时间片后,进程将进入阻塞状态; 进程被阻塞的时间blo
jcgl
- 利用简单的结构和控制方法模拟进程结构、进程状态和进程控制。-The use of a simple structure and control simulation of process structure, process status and process control.
3-5
- 1.掌握定时器典型应用方法,了解相应寄存器的作用和编程应用; 2. 了解TMS320F2812的中断结构和对中断的处理流程。 二.实验设备 1.PC机一台,操作系统为WindowsXP (或Windows98、Windows2000),安装了ccs3.1; 2.TI 2000系列的TMS320F2812 eZdsp开发板一块; 3.扩展实验箱一台。 三.实验原理 1.TMS320F2812器件上有3个32位定时器(图3.1)(TIMER0/1/2)。
0607
- 文件和文件系统 文件的逻辑结构 外存分配方式 目录管理 文件存储空间的管理 文件共享与文件保护 数据一致性控制 -File and file system allocation of the logical structure of the external memory management of file storage space for the directory file sharing and document management to prot
os
- 操作系统6.1 文件和文件系统 6.2 文件的逻辑结构 6.3 外存分配方式 6.4 目录管理 6.5 文件存储空间的管理 6.6 文件共享与文件保护 6.7 数据一致性控制 -OS 6.1 file 6.2 file and file system logical structure of the external memory allocation 6.4 6.3 6.5 content management file storage space mana
OS_1_1
- 进程调度算法的模拟 1.用语言来实现对n个进程采用不同调度算法的进程调度。 2.每个用来标识进程的进程控制块PCB用结构来描述,包括以下字段: (1)进程标识ID,其中0为闲逛进程,用户进程的标识数为1,2,3…。 (2)进程优先级Priority,闲逛进程(idle)的优先级为0,用户进程的优先级大于0,且随机产生,优先数越大,优先级越高。 (3)进程占用的CPU时间CPUtime,进程每运行一次,累计值等于4。 (4)进程总共需要运行时间Alltime,利用随机函数产
os1
- 完成了“进程控制”。 其实验目的是, 1. 利用简单的结构和控制方法模拟进程结构、进程状态和进程控制。 2. 了解6个原语,创建进程(C),终止进程(e),唤醒进程(w),阻塞进程(b),调度进程(p),时间到(t) 3. 理解PCB的含义,PCB是进程存在的唯一标志,它记录着进程标识符,处理机状态,进程调度信息和进程控制信息 4. 掌握进程状态的转换 5.了解内存的分配和回收算法。 -Complete process control. Experimen
ProcessControl
- 实验1 进程调度 一、实验目的 通过实验加强对进程调度算法的理解和掌握。 二、实验内容 编写程序实现基于优先级的时间片轮转调度算法。 -Experiment a process schedulingFirst, the purpose of the experimentExperiments to enhance understanding and mastering of the process scheduling algorithm.Second, exper
os1
- 通过利用简单的结构和控制方法,完成模拟进程结构、进程状态和进程控制,掌握根据事件处理就绪队列、阻塞队列和当前执行进程的状态的方法。-Through the use of a simple structure and control method, the completion of the modeling process structure, process status, and process control, master the ready queue according to the
design-process-scheduling-algorithm
- 进程调度算法的设计 设计要求: ①设计进程控制块PCB表结构,分别适用于优先数调度算法和循环轮转调度算法。 ②建立进程就绪队列。对两种不同算法编制入链子程序。 ③编制两种进程调度算法:1)优先数调度;2)循环轮转调度 设计技术参数参考: ①本程序用两种算法对五个进程进行调度,每个进程可有三个状态,并假设初始状态为就绪状态。 ②为了便于处理,程序中的某进程运行时间以时间片为单位计算。各进程的优先数或轮转时间数以及进程需运行的时间
IF_ELSE
- 引入属性文法和语法制导翻译方法的基本思想,对控制结构“IF-ELSE”条件语句进行词法分析,并在词法分析的基础上进行LR语法分析,并根据语法制导翻译方法将条件语句翻译成四元式中间代码形式,最后输出翻译后的四元式代码。-The basic idea of introducing the attribute grammar and syntax directed translation method, lexical analysis of the control structure of "IF-
jin-cheng-guan-li-xi-tong
- 进程管理系统:定义PCB的数据结构,用链表的形式管理进程,采用多级反馈队列调度的算法模拟进程的控制,最终完成有创建、撤销、调度、阻塞、唤醒进程等功能-Process Management Systems: Define the PCB data structure, with the form of chain management processes, the use of multi-level feedback queue scheduling algorithm simulation p
Process-scheduling-
- ① 设计进程控制块PCB表结构,分别适用于优先数调度算法和循环轮转调度算法。 ②建立进程就绪队列。对两种不同算法编制入队子程序。 ③编制两种进程调度算法:1)优先数调度;2)循环轮转调度 -① design process control block PCB table structure, respectively, for priority scheduling algorithm and round-robin scheduling algorithm. ② establish