登录

最新会员 最新下载

成为了本站VIP会员

05月13日 14:43

成为了本站VIP会员

05月13日 10:19

成为了本站VIP会员

05月12日 14:03

成为了本站VIP会员

05月10日 21:42

成为了本站VIP会员

05月10日 16:59

成为了本站VIP会员

05月09日 16:51
已选条件
  1. 编程语言:所有
  2. 代码类别:操作系统开发
  3. 发布时间:不限
全部撤销
编程语言 更多 收起
代码类别 更多 收起
发布时间
更多选项

1. Shell-Programming-in-24-Hours

  INSTRUCTOR’S MANUAL TO ACCOMPANY OPERATING SYSTEM CONCEPTS SIXTH EDITION ABRAHAM SILBERSCHATZ Bell Laboratories PETER BAER GALVIN Corporate Technologies GREG GAGNE Westminster College

3
下载
100
浏览
2012-04-16发布

2. Page-replacement

  页面置换算法的模拟实现及命中率对比.通过模拟实现几种基本页面置换的算法,了解虚拟存储技术的特点(Simulation of page replacement algorithm, and the hit rate compared to several basic page replacement algorithm through simulation to understand the characteristics of virtual storage technology)

9
下载
112
浏览
2012-03-29发布

3. disk

  操作系统各种调度算法模拟,包括先来先服务、最短寻道时间优先、电梯调度算法等。(A variety of operating systems scheduling algorithm simulation, including first come, first service, the shortest way time priority, elevator for scheduling algorithm, etc.)

2
下载
82
浏览
2012-03-14发布

4. dos

  dos命令大全包括基本的常用命令,以及查看操作命令(dos commands the Daquan including basic commonly used commands, and view the operation command )

3
下载
117
浏览
2012-02-22发布

5. freecom

  FreeDOS command shell sources

5
下载
96
浏览
2012-02-14发布

6. job

  操作系统中模拟作业进入内存的状态,作业调度程序(Operating system job scheduler)

3
下载
135
浏览
2012-02-01发布

7. process-and-thread-Technology

  进程和线程技术 Linux和windows进程创建 进程和线程通信 文档+实例分析(process and thread Technology Text and examples)

2
下载
140
浏览
2012-01-05发布

8. run

  自己动手写操作系统,小练习包括fifo.cfork.cpopen.c等,保护模式,超过1M内存管理模式,等代码,生成的中间文件等,适合初学者参考!(Do-it-yourself write operation system, small exercises include fifo. C fork. C popen. C, and other protection mode, more than 1 M memory management mode, and the code, generation of the middle of the documents, etc, and is suitable for beginners reference )

3
下载
110
浏览
2011-12-22发布

9. MyProcess

  MFC实现的,界面有好,实现了进程调度的算法 能够模拟操作系统的进程调度 适合初学者(MFC implementation, the interface is good, a process scheduling algorithm to achieve To simulate the operating system process scheduling for beginners)

9
下载
119
浏览
2011-12-02发布

10. PCB

  pcb实现。。进程管理。就绪队列,阻塞队列实现(pcb to achieve)

3
下载
122
浏览
2011-11-23发布

11. parallel-scrambler

  并行扰码器的实现推导及其结论,非常详细,运用在高速电路上(Parallel implementation of the scrambler is derived and its conclusions, in great detail, using high-speed circuit)

56
下载
120
浏览
2011-11-22发布

12. Cpp1

  模拟操作系统进程调度:运行状态,就绪状态和完成状态。包含有first() prisch() insert1(q) creat(gg) prish() roundsch() 函数的引用。(Simulate the operating system process scheduling: running, ready states, and completion status. Contains the first () prisch () insert1 (q) creat (gg) prish () roundsch () function reference.)

2
下载
133
浏览
2011-11-19发布

13. PlayWithDataStructureSourceCode

  本教材以操作系统原理为主线,结合当今主流操作系统设计方法。(The principles of materials to the main line operating system, combined with today' s mainstream operating system design.)

4
下载
137
浏览
2011-11-01发布

14. BIOS1121

  BIOS深度了解,图示介绍,对于初学者来说很有帮助,有需要的快下载吧(BIOS-depth understanding, icon introduced, useful for beginners, there is a need to download it fast)

4
下载
89
浏览
2011-10-23发布

15. ProcessScheduler

  一个进程调度模拟器软件 适合教学操作系统演示(A process scheduling simulator software for teaching operating system shows)

21
下载
102
浏览
2011-09-02发布

16. orange5_6

  于渊的 一个操作系统的实现 光盘源码 第五章和第六章 该源码包含了操作系统实现的完整过程(In a deep realization of the operating system CD-ROM chapters V and VI of the source code contains the operating system to achieve the complete process)

4
下载
95
浏览
2011-08-17发布

17. DOS

  Some basic information about DOS

2
下载
96
浏览
2011-07-11发布

18. LRU

  利用LRU算法仿真请求页面系统 1、设计内容:用高级语言编写和调试一个内存分配程序,加深对内存分配算法的理解。 2、设计要求: 1) 实现请求分页存储管理方式的页面置换算法:近期最久未使用算法(LRU) 2) 内存物理块数固定为3个,对多个作业采用可变分配全局置换的策略分配物理块 3) 作业数量与作业大小(0-9页)可在界面进行设置 4) 所有作业按RR算法进行调度,时间片长度为1秒 5) 可为每个作业随机产生引用的页面串,也可以人工输入引用的页面串,页面串长度50---100,要求必须包括作业所有的页面,可作为样例数据保存 6) 可读取样例数据(要求存放在外部文件中)进行作业数量、作业大小、页面串长度的初始化 7) 要求采用可视化界面,模拟内存分配和使用情况图,可在运行过程中随时暂停,查看当前内存物理块使用情况。 8) 每次全部作业运行结束后,要求打印出访问命中率 (Request page using LRU algorithm simulation system)

38
下载
111
浏览
2011-07-06发布

19. 33

说明:  作业调度——先来先服务,最短作业优先,最高响应比优先(Job scheduling- a first-come first-served, shortest job first, highest priority response ratio)

0
下载
141
浏览
2011-07-01发布

20. 4

说明:  这是一个操作系统中关于调度问题中的先来先服务调度算法。(This is an operating system on the scheduling of a first-come first-served scheduling.)

0
下载
97
浏览
2011-06-19发布