登录
首页 » Visual C++ » OSDemo

OSDemo

于 2020-06-26 发布 文件大小:813KB
0 217
下载积分: 1 下载次数: 3328

代码说明:

  操作系统实验演示代码(三个实验,作业管理,内存管理,文件管理)(Experimental demonstration of the operating system code (three experiments, operations management, memory management, document management))

文件列表:

OSDemo
......\BalloonTip.cpp
......\BalloonTip.h
......\CheckerCtrl.cpp
......\CheckerCtrl.h
......\DlgNewFile.cpp
......\DlgNewFile.h
......\Graph
......\.....\Graph.cpp
......\.....\Graph.h
......\.....\GraphDataColor.cpp
......\.....\GraphDataColor.h
......\.....\GraphDataSet.cpp
......\.....\GraphDataSet.h
......\.....\GraphLegend.cpp
......\.....\GraphLegend.h
......\.....\GraphLegendSet.cpp
......\.....\GraphLegendSet.h
......\.....\GraphPieLabel.cpp
......\.....\GraphPieLabel.h
......\.....\GraphSeries.cpp
......\.....\GraphSeries.h
......\JobView.cpp
......\JobView.h
......\MainFrm.cpp
......\MainFrm.h
......\MatrixStatic.cpp
......\MatrixStatic.h
......\MemPage1.cpp
......\MemPage1.h
......\MemPage2.cpp
......\MemPage2.h
......\MemView.cpp
......\MemView.h
......\OSDemo.aps
......\OSDemo.clw
......\OSDemo.cpp
......\OSDemo.dsp
......\OSDemo.dsw
......\OSDemo.h
......\OSDemo.ncb
......\OSDemo.opt
......\OSDemo.plg
......\OSDemo.rc
......\OSDemoDoc.cpp
......\OSDemoDoc.h
......\OSDemoView.cpp
......\OSDemoView.h
......\PieChartCtrl.cpp
......\PieChartCtrl.h
......\Release
......\RES




......\...\Harrow.cur

......\...\JOB.ICO
......\...\matrixsettinyblue.bmp
......\...\MEMPAGE.ICO
......\...\Mycomp.ico
......\...\MYFILE.ICO
......\...\MYSKIN1.BIN
......\...\Openfold.ico
......\...\OS.ICO
......\...\OSDemo.rc2
......\...\OSDemoDoc.ico
......\...\PROCESS.ICO
......\...\SHELL2.BIN
......\...\TAPE.ICO
......\...\Toolbar.bmp
......\...\USER.ICO
......\...\实验报告1.doc
......\...\实验报告2.doc
......\...\实验报告3.doc
......\...\实验报告4.doc
......\resource.h
......\SKIN
......\....\CORONA.SMF
......\....\DETOURS.LIB
......\....\SkinMagicLib.lib
......\SkinMagicLib.h
......\Splash.cpp
......\Splash.h
......\StdAfx.cpp
......\StdAfx.h
......\Tab1.cpp
......\Tab1.h
......\Tab2.cpp
......\Tab2.h
......\Tab3.cpp
......\Tab3.h
......\Tab4.cpp
......\Tab4.h
......\TabSheet.cpp
......\TabSheet.h
......\VDISK.DAT
......\~VC47.TMP

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • dinning
    哲学家进餐的问题,用程序模拟实现,解释死锁的产生、解除以及预防(dining philosophers problem, simulation procedures, explained Deadlock in lifting and prevention)
    2006-12-08 11:52:24下载
    积分:1
  • ss
    说明:  请求页式虚存管理是常用的虚拟存储管理方案之一。通过请求页式虚存管理中对页面置换算法的模拟,有助于理解虚拟存储技术的特点,并加深对请求页式虚存管理的页面调度算法的理解。(Page requests virtual memory management is commonly used in the virtual storage management, one of the options. Page through the request of the management of virtual memory page replacement algorithm for simulation, helping to understand the characteristics of virtual storage technology, and better understanding of the request for virtual memory management Page page scheduling algorithm understanding.)
    2008-06-20 21:20:07下载
    积分:1
  • shiyan4
    广东工业大学计算机学院操作系统4源代码 (Guangdong University of Computer Science 4 source code operating system)
    2013-01-15 17:20:42下载
    积分:1
  • jinchengdiaodu
    加深进程概念的理解;掌握选择进程调度算法的准则;掌握进程调度算法。 (Deepen the process of understanding of the concept master scheduling criteria selection process algorithm master process scheduling algorithm.)
    2013-12-10 13:42:14下载
    积分:1
  • LinuxGroupMan
    说明:  Unix 成组链接法 模拟UNIX系统的空闲块成组链接法,实现磁盘存储空间的管理(Unix Group Links UNIX System Simulation of spare pieces Group link, disk storage space to achieve the management)
    2020-12-12 19:59:15下载
    积分:1
  • diaodu
    这是一个进程调度问题~~~~还是有很多的问题哦(This is a process of scheduling problem ~ ~ ~ ~ still has many problems Oh)
    2007-10-22 19:11:43下载
    积分:1
  • pickmeup
    说明:  几个算法分析和操作系统的上机小程序,vc,c#实现(several algorithm analysis and operating systems on the plane small program vc, c#)
    2006-02-28 12:02:02下载
    积分:1
  • chulijidiaodu
    处理及调度源代码,用C++来编程,模拟处理机调度,实验报告(Processing and scheduling source code, using C++, programming, analog processor scheduling, lab reports)
    2011-06-13 00:42:10下载
    积分:1
  • process_attemper
    1、 :编写并调试一个模拟的进程调度程序,采用“最高优先数优先”调度算法对进程进行调度。 “最高优先数优先调度算法的基本思想是把CPU分配给就绪队列中优先数最高的进程。尝试静态优先数与动态优先数两种方法: a) 静态优先数是指优先数在整个进程运行期间不再改变。优先数可以在数据输入时指定,也可以根据到达顺序、运行时间确定。 b) 动态优先数是指进程的优先数在创建进程时可以给定一个初始值,并且可以按一定原则修改优先数。例如进程获得一次CPU后就将其优先数减少1。或者进程等待的时间超过某一时限时增加其优先数的值。 2、 编写并调试一个模拟的进程调度程序,模拟实现多级反馈队列调度算法。 3、 编写并调试一个模拟的进程调度程序,模拟实现最低松弛度优先算法。 4、 程序与报告要求: a) 对上述要求1、2、3,至少要完成一项,鼓励尝试多种算法。 b) 输出结果要尽量详细清晰,能够反映调度后队列变化,PCB内部变化。 c) 可以选择在Windows或Linux环境下编写、运行程序 d) 鼓励使用不同的开发工具在不同平台环境上进行开发比较。 e) 在实验报告中,一方面可以对实验结果进行分析,一方面可以对各种算法进行比较,分析它们的优劣,说明各种算法适用于哪些情况下的调度。 (1 : Prepare a simulation and debugging process scheduling procedures, "Priority number of the highest priority" to the process of scheduling algorithms for scheduling. "Highest priority priority scheduling algorithm for the basic idea is to place the CPU allocated to the priority queue highest process. Taste Examination several static and dynamic priority priority number two methods : a) static priority number is priority number in operation during the entire process will not change. priority number in the designated input data, can be reached under the order, running time determine. b) dynamic priority number refers to several priorities for the process of the creation process can be given an initial value, and according to the principle of amending certain priority number.)
    2007-07-04 12:57:51下载
    积分:1
  • caozuoxitongshiyanwendang
    操作系统的实验文档 包含设计与说明 带源码例子(Document contains the operating system design and description of experimental)
    2010-11-17 11:26:54下载
    积分:1
  • 696522资源总数
  • 104042会员总数
  • 18今日下载