登录

最新会员 最新下载

成为了本站VIP会员

05月10日 21:42

成为了本站VIP会员

05月10日 16:59

成为了本站VIP会员

05月09日 16:51

成为了本站VIP会员

05月09日 14:47

成为了本站VIP会员

05月08日 20:16

成为了本站VIP会员

05月08日 10:54
已选条件
  1. 编程语言:C++
  2. 代码类别:操作系统开发
  3. 发布时间:一月内
全部撤销
编程语言 更多 收起
代码类别 更多 收起
发布时间
更多选项

1. 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
下载
77
浏览
2012-03-14发布

2. job

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

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

3. process-and-thread-Technology

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

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

4. 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
下载
109
浏览
2011-12-22发布

5. MyProcess

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

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

6. PCB

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

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

7. 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
下载
132
浏览
2011-11-19发布

8. PlayWithDataStructureSourceCode

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

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

9. 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
下载
108
浏览
2011-07-06发布

10. 33

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

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

11. 4

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

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

12. chulijidiaodu

  处理及调度源代码,用C++来编程,模拟处理机调度,实验报告(Processing and scheduling source code, using C++, programming, analog processor scheduling, lab reports)

3
下载
116
浏览
2011-06-13发布

13. ucore-lab1

  Ucore是一个很小的适于学习的操作系统,此“麻雀”包含虚存管理、进程管理、处理器调度、同步互斥、进程间通信、文件系统等主要内核功能,总的内核代码量(C+asm)不会超过5K行。充分体现了“小而全”的指导思想。 这是ucore的实验1:系统软件启动过程。实验目的:操作系统是一个软件,也需要通过某种机制加载并运行它。在这里我们将通过另外一个更加简单的软件-bootloader 来完成这些工作。为此,我们需要完成一个能够切换到x86 的保护模式并显示字符的bootloader,为将来启动操作系统做准备。proj1 提供了一个非常小的bootloader,整个bootloader 的大小小于512 个字节,这样才能放到硬盘的主引导扇区中。通过分析和实现这个bootloader,读者可以了解到:基于分段机制的存储管理、设备管理的基本概念、PC 启动bootloader 的过程、bootloader 的文件组成、编译运行bootloader 的过程、调试bootloader 的方法、在汇编级了解栈的结构和处理过程、中断处理机制、通过串口/并口/CGA 输出字符的方法。文件中包括源代码、实验指导书和实验报告。(Ucore is a small operating system for learning, the " Sparrow" contains the virtual memory management, process management, processor scheduling, synchronization mutually exclusive, inter-process communication, file system and other major kernel functions, the total amount of kernel code ( C+ asm) no more than 5K lines. Fully embodies the " small" the guiding ideology. This is ucore experiment 1: the system software boot process. Purpose: the operating system is a software, but also need some mechanism to load and run it. Here we will adopt another more simple software-bootloader to complete these tasks. To this end, we need to be able to complete a switch to the x86 protected mode and display the characters bootloader, the operating system to start to prepare for the future. proj1 provides a very small bootloader, the bootloader is less than 512 bytes in size, so as to put the hard disk master boot sector. Through the analysis and to achieve this bootloader, the read)

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

14. program

  作业调度程序,模拟操作系统的作业调度过程,协调和控制各个作业对cpu的使用控制(Job scheduling program to simulate the process of the operating system job scheduling, coordinating and controlling the use of control operations on cpu)

7
下载
116
浏览
2011-05-19发布

15. caozuoxitongshiyanwendang

  操作系统的实验文档 包含设计与说明 带源码例子(Document contains the operating system design and description of experimental)

2
下载
110
浏览
2010-11-17发布

16. 1998_RLDEiDI

  os developer that helps you develop an os

2
下载
90
浏览
2010-11-14发布

17. ComputerSystems--AProgrammersPerspective

  从程序员的角度看计算机操作系统~ 很不错的书 大家都加油了(Computer Systems--A Programmer s Perspective)

4
下载
93
浏览
2010-09-17发布

18. OS

说明:  这是操作系统中调度算法中时间片轮转算法完成后的实践报告(This is the operating system scheduling algorithm in the time slice cycle after the completion of practice report)

0
下载
128
浏览
2010-09-06发布

19. OS

说明:  包含操作系统全部试验以及实验报告,稍微修改下就可以了(Contains the operating system all the tests and lab reports, a slight modification can be the next)

0
下载
110
浏览
2010-05-26发布

20. MyBank

说明:  操作系统银行家算法,C#编写,比较漂亮,有用!(OS Banker' s algorithm, C# prepared, more beautiful, works!)

1
下载
70
浏览
2010-05-04发布