搜索资源列表
Embedded_software_to_enhance_the_quality_of_the_wa
- 提高嵌入式软件质量的途径,中文版本。写很详细-To improve the quality of embedded software means, the Chinese version. Write a very detailed
address
- 操作系统课程设计中的三种存储管理方式的地址换算过程 -Three types of storage management means the address conversion process
mode1
- 内存是计算机系统中储存指令代码和各种数据的主要部件,如果内存短缺或者管理不当,将导致整个系统反应迟缓,甚至崩溃。所以,建立稳定、高效的内存管理策略是一个很重要的且必须面对的问题。现代的操作系统中运用位图、链表等多种手段和算法来管理内存。伙伴算法(Buddy System)是一种经典的内存管理算法。在Unix和Linux操作系统中都有用到。其作用是减少存储空间中的空洞,减少碎片,增加利用率。 本程序模拟了内存管理的过程-Memory is stored in a computer system
BIOS
- BIOS是Basic Input/Output System的缩写,中文意思是“基本输入/输出系统”。它是操作系统和硬件之间的连接桥梁,负责在电脑开启时检测、初始化系统设备、装入操作系统并调度操作系统向硬件发出指令 -BIOS is the Basic Input/Output System the abbreviation of Chinese means " basic input/output system." It is the operating syste
Mspress.-.Running.Ms-Dos
- Running MS-DOS Version 6.22, 20th Anniversary Edition -Running MS-DOS Version 6.22, 20th Anniversary Edition Van Wolverton PUBLISHED BY Microsoft Press A Division of Microsoft Corporation One Microsoft Way , Redmond, Wash
ProcessMonitorProject
- 进程监控功能实时监控操作系统中的所有进程运行情况,如果发现非法进程,就立即阻止或结束其进程,当阻止或结束动作 完成后,将此情况记录到日志文件中,以便后续追查。非法进程是通过自动判断或人工手段通知进程监控程序,进程监控得到黑 进程列表后,实时判断当前系统中是否存在非法进程。 -Process monitoring in real-time monitoring of all operating system processes running, and if found illeg
wenjianchuangjian
- 这段代码是通过VC++来编译的,这是创建一个文件的代码,通过输入文件的途径就可以在那里创建一个文件-This code is VC++ to compile, which is to create a file of code, through the input file means you can create a file in there
Beginning-Relational-Data-Modeling
- 这本书目的是给读者提供一个关系型数据库模型领域的背景。这是一本易读的和有实践练习的书。-Relational databases provide a powerful means by which to store and manipulate vast volumes of data. The design of such systems is based on the mathematics of relational theory, which was advanced in it
1
- (1)假定系统有5个进程,每个进程用一个PCB来代表。PCB的结构为: • 进程名——如P1~P5。 • 指针——按优先数的大小把5个进程连成队列,用指针指出下一个进程PCB的首地址。 • 要求运行时间——假设进程需要运行的单位时间数。 • 优先数——赋予进程的优先数,调度时总是选取优先数大的进程先执行。 • 状态——假设两种状态:就绪和结束,用R表示就绪,用E表示结束。初始状态都为就绪状态。 (2) 开始运行之前,为