搜索资源列表
进程管理与调度的模拟
- 在进程管理与调度模拟系统中,共涉及到两个类和一个结构体:PCB结构体、链队列类和OS类。操作系统启动后,在系统内将存在PCB池,用来存放进程的PCB结构,PCB池的大小决定了系统中能同时存在的进程数量。在本系统中,假定系统能同时存在的进程数为20个,用一个PCB的数组来表示。PCB池中的PCB会有四种状态:运行状态、就绪状态、阻塞状态和空闲状态,所以,在操作系统中将会有四种队列:运行队列、就绪对列、阻塞队列和空闲队列。进程的创建随着操作系统的调度,将会在这四种队列中变迁。-in process
模拟进程同步
- 模拟操作系统里的进程的同步实现,用C开发。-operating system simulation of the process of synchronization with C development.
page20
- c++程序,模拟操作系统进程管理,里面有所有的文件和所明-c procedures, the operating system simulation process management, which has all the documents and that
Process_Scheduler
- 这是一个操作系统进程管理的模拟程序。 采用FCFS,多级反馈队列等算法调度进程。 这是我们操作系统课程的一个项目。-This is a process management system simulation program. Using FCFS queue, multi-level feedback queue algorithm scheduling process. This is our operating systems course of a project.
processs
- C语言写的操作系统 进程调度程序 大学的时候写的作业-C language to write the operating system scheduler process of the University of write operations
RoundRobin_Youxianji
- 文件中实现了操作系统进程调度的时间片轮转和优先级法,非常好用,十分适合于学习。-documents to fulfill the operating system process scheduling time slice and rotate priority, very convenient, very suitable for the study.
myos
- 操作系统进程管理-os system management
操作系统实验程序
- 操作系统进程调度程序-process of the operating system scheduler
os1
- 操作系统进程调度内存分配与回收-operating system memory allocation process scheduling and recovery
JC
- 此为操作系统进程调度程序,有优先数调度。
Windows2000
- 通过在Windows任务管理器中对程序进程进行响应的管理操作,熟悉操作系统进程管理的概念,观察操作系统运行的动态性能,获得包含多进程的应用程序编程经验
jinchengdiaodu
- 模拟操作系统进程管理的程序,能够动态创建进程、悬挂进程、杀死进程; 可以为任意一当前进程创建子进程; 显示系统当前各个进程的状态。
rr(0)
- 很简单的一个操作系统进程调度方法的实现:时间片轮转法。
linux 线程 进程经典文章
- 学习操作系统时,进程和线程搞了很久,还是一知半解,看了这一篇文章,才在整体在明白了它们之间的依存-learning operating system, processes and threads engage in a long time, or only a little, having read this article, but only in general they understand the interdependence between the
进程调度111
- 这是大学上操作系统做的实验,相信很多人都可用的着!本实验模拟单处理器系统的进程调度,采用时间片轮转调度算法作为进程调度算法。-this is the operating system on the university to do experiments, I believe many people are available to! Experimental simulation of the single-processor system in the process scheduling,
进程管理2005
- 这是一个关于进程调度的算法,是操作系统 的精典算法 ,希望大家多指教,-This is a process of scheduling algorithm is the classic operating system algorithm, we hope that more exhibitions,
进程
- 这是另外一个计关于操作系统 的进程调度的算法 ,也是用c来模拟的,希望大家多指教,-This is another one of the operating system or the process of scheduling algorithm is used to simulate c, we hope more exhibitions,
aa
- windows环境下实现操作系统进程调度的一个程序实例,开发环境为vc-windows operating system environment to achieve the process of scheduling a procedure example, development environment for vc++
jinchengdiaodu
- 操作系统进程调度课程设计,包括三种进程调度算法-The operating system process scheduling curriculum design, including three kinds of process scheduling algorithm
操作系统进程调度实验报告
- 就绪进程获得 CPU 后都只能运行一个时间片。用已占用 CPU 时间加 1来表 示。 如果运行一个时间片后, 进程的已占用 CPU 时间已达到所需要的运行时间, 则撤消该进程,如果运行一个时间片后进程的已占用 CPU 时间还未达所需要的 运行时间,也就是进程还需要继续运行,此时应将进程的优先数减 1(即降低一级) ,然后把它插入就绪队列等待 CPU 。 每进行一次调度程序都打印一次运行进程、就绪队列、以及各个进程的 PCB ,以便进行检查。 重复以上过程,直到所要进程都完成为止。