CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 其它 操作系统开发 搜索资源 - second

搜索资源列表

  1. 《Windows VxD与设备驱动程序权威指南》

    0下载:
  2. 本书是讲述VxD和设备驱动程序的权威指南。主要分为两部分。第一部分(第2到第12章)讲述Windows执行环境和VxD。第二部分(第13到第19章)讲述基于DLL的驱动程序。本书几乎涵盖了设备驱动程序开发的各个层面,内容全面翔实,可读性较高。 -the book is about the VxD driver and equipment to the authority and guidance. Divided into two main parts. The first part (sect
  3. 所属分类:操作系统开发

    • 发布日期:2008-10-13
    • 文件大小:128.82kb
    • 提供者:张小姐
  1. 一个很简单的操作系统(版本三)

    0下载:
  2. 继第二版本,教你怎么让自己的操作系统进入保护模式,很精彩哦-the second version, to teach you how to make our operating system into protection mode, wonderful!
  3. 所属分类:操作系统开发

    • 发布日期:2008-10-13
    • 文件大小:77.21kb
    • 提供者:wjh
  1. 磁盘调度算法

    0下载:
  2. 磁盘调度算法 1。实现三种算法: 1。先来先服务 2。最短寻道优先(可自己假设当前磁头的位置) 3。电梯算法 2。磁道服务顺序从指定的文本文件(TXT文件)中取出 3。输出: 第一行:磁道的服务顺序 第二行:显示移动总道数-a disk scheduling algorithms. Three algorithms to achieve : 1. First-come first-serve two. Seeking shortest priority (to
  3. 所属分类:操作系统开发

    • 发布日期:2008-10-13
    • 文件大小:7.17kb
    • 提供者:飞扬
  1. 页面置换算法的模拟实现和计算命中率

    0下载:
  2. 基本算法思想 OPT:该算法的基本思想是用二维数组page2[40][2] 的第一列存储装入内存的页面,而第二列用作标记位计数器。每当发生缺页时,就从内存中调出一页,首先将内存中的页面一一与要调入内存中的页面之后的页面比较,如果两个页面不相等,则内存中相应的页面的标记位计数器加一,直至到有相等的页面,则该页面的比较停止,再重复以上操作,直至内存中的页面全部比较完。然后找出内存中页面的标记位最大的页面,而该页就是要置换出来的页。 FIFO: 该算法的基本思想是用队列queue存储内存中的页面,队列
  3. 所属分类:操作系统开发

    • 发布日期:2008-10-13
    • 文件大小:25.8kb
    • 提供者:何泽荣
  1. YLP2410_BIOS.rar

    0下载:
  2. 这是优龙yl-p2410的一个bios程序,源光盘附带,但我经过了一些修改,解决了一些Bug,如:第二次开机无法找到usb驱动。,This is excellent yl-p2410 Liuzhou a bios procedures, the source CD-ROM attached to, but I have been some changes to address a number of Bug, such as: the second boot can not find the u
  3. 所属分类:OS Develop

    • 发布日期:2017-04-01
    • 文件大小:66.58kb
    • 提供者:张专
  1. qd

    0下载:
  2. 这是本人大二的课程设计源代码,用的是电梯调度算法,请大家指教-This is my second year of the curriculum design source code, use the elevator scheduling algorithm, Please advise
  3. 所属分类:OS Develop

    • 发布日期:2017-03-29
    • 文件大小:164.66kb
    • 提供者:舒明
  1. uCosII_Chinese

    0下载:
  2. uCosII 中文版,uCosII中文教程第二版,初学的好资料-uCosII Chinese version, uCosII the second edition of the Chinese curriculum, learning good information
  3. 所属分类:OS Develop

    • 发布日期:2017-05-08
    • 文件大小:1.7mb
    • 提供者:zhoujin
  1. 3106007038

    2下载:
  2. 操作系统实验 实验一 进程调度 实验二 作业调度 实验三(综合性) 主存空间的分配与回收 实验四 文件系统-Experimental test of a process of operating system scheduling job scheduling experiment Second experiment three (integrated) main memory space allocation and recovery of the experimental
  3. 所属分类:OS Develop

    • 发布日期:2017-05-13
    • 文件大小:3.4mb
    • 提供者:caicai
  1. os

    0下载:
  2. 现代操作系统第二版习题答案,需要的可以下载参考,本人觉得很有用的。-Modern operating system, the answer to the second edition of exercise, can be downloaded in need of reference, I feel very useful.
  3. 所属分类:OS Develop

    • 发布日期:2017-04-26
    • 文件大小:181.15kb
    • 提供者:tyblqq5201314
  1. Panel

    0下载:
  2. 双位数码管显示,二线制通讯,基于mb89930型芯片-Double-digit digital display, second-line communications system, based on the type mb89930 chip
  3. 所属分类:OS Develop

    • 发布日期:2017-04-04
    • 文件大小:11.5kb
    • 提供者:古龙
  1. workplace

    0下载:
  2. 是关于页面替换算法的代码模拟,用了三种算法,先进先出,第二次机会,时钟算法-Is on the page replacement algorithm code simulation, using the three algorithms, FIFO, a second chance, the clock algorithm
  3. 所属分类:OS Develop

    • 发布日期:2017-03-29
    • 文件大小:81.07kb
    • 提供者:lzh
  1. c

    0下载:
  2. 要求: 1。实现三种算法: 1。先来先服务 2。最短寻道优先(老师会给当前磁头的位置) 3。电梯算法 2。磁道服务顺序从指定的文本文件(TXT文件)中取出 3。输出: 第一行:磁道的服务顺序 第二行:显示移动总道数-Requirements: 1. The realization of the three algorithms: 1. First Come First
  3. 所属分类:OS Develop

    • 发布日期:2017-04-12
    • 文件大小:1.71kb
    • 提供者:
  1. second

    0下载:
  2. 读者和写者;是操作系统实验报告满规范的,包含源码可以运行的,如果要在windows运行,可以用c软件-Readers and those who write is the operating system over a standardized test reports, including source code can run, and if you want to run windows, you can use c software
  3. 所属分类:OS Develop

    • 发布日期:2017-04-29
    • 文件大小:72.36kb
    • 提供者:金鱼
  1. program

    0下载:
  2. 一,可以存储所有馆中图书的资料以及借阅人员的情况,具有安全,高效的特性。 二,只需要一到两名档案 人员即可操作系统,节省大量人力。 三,可以迅速查到所需信息。-A museum can store all the information, as well as books to borrow staff, a safe and efficient characteristics. Second, only need 1-2 staff to the operating system
  3. 所属分类:OS Develop

    • 发布日期:2017-05-02
    • 文件大小:694.16kb
    • 提供者:魏斌
  1. 31323

    0下载:
  2. 一,可以存储所有馆中图书的资料以及借阅人员的情况,具有安全,高效的特性。 二,只需要一到两名档案 人员即可操作系统,节省大量人力。 三,可以迅速查到所需信息。-A museum can store all the information, as well as books to borrow staff, a safe and efficient characteristics. Second, only need 1-2 staff to the operating system
  3. 所属分类:OS Develop

    • 发布日期:2017-05-08
    • 文件大小:1.84mb
    • 提供者:魏斌
  1. memmanage

    0下载:
  2. 这是学习操作系统时的第二个实验,内存动态管理的实验,内有实验报告.-This is the operating system at the time of learning a second experiment, the experimental dynamic management of memory, there are experimental reports.
  3. 所属分类:OS Develop

    • 发布日期:2017-03-30
    • 文件大小:559.08kb
    • 提供者:肖宗花
  1. exp

    0下载:
  2. 一、本程序针对操作系统中进程撤销相关理论进行实验。要求实验者设计一个程序,该程序 可模拟撤销多个进程及其子孙进程。 二、本程序针对操作系统中进程创建相关理论进行实验。要求实验者输入实验指导书提供的代码并进行测试。代码简化了进程创建的多个步骤和内容。进程的树形结构采用广义表的方式进行存储。 -First, the procedure for revocation of the operating system in the process of theory to experiment
  3. 所属分类:OS Develop

    • 发布日期:2017-04-03
    • 文件大小:7.13kb
    • 提供者:李方
  1. os-2

    0下载:
  2. 实验二 作业调度实验 本实验模拟单处理器系统的作业调度,加深对作业调度算法的理解。用某种语言编写和调试一个作业调度的算法程序,有一些简单的界面,能够运行,仿真操作系统中作业调度的原理和过程。-Second, job scheduling experiment experimental experimental simulation of the single-processor job scheduling system, deepen the understanding of job sc
  3. 所属分类:OS Develop

    • 发布日期:2017-03-30
    • 文件大小:1.27kb
    • 提供者:华博
  1. Operating_System_Tutorial

    0下载:
  2. 本教程为《操作系统原理教程(第二版)》。由计算机硬件组成出发,分析操作系统的功能、发展例程和方向。根据操作系统功能将其划分为多个功能模块,并就各个模块进行详细的解析。学习过本教程后,就可以对操作系统的结构框架由比较系统的了解。-Tutorial for the " principle of the operating system Tutorial (second edition)." By the computer hardware components, the anal
  3. 所属分类:OS Develop

    • 发布日期:2017-05-20
    • 文件大小:5.74mb
    • 提供者:ygz
  1. chineseversionofmos

    0下载:
  2. 现代操作系统 第二版 很多美国学校都在用 我们penn 的本科也用-The second edition of a modern operating system, many U.S. schools are using our undergraduate also used in penn
  3. 所属分类:OS Develop

    • 发布日期:2017-05-18
    • 文件大小:4.55mb
    • 提供者:cheng huang
« 12 »
搜珍网 www.dssz.com