搜索资源列表
chuliqi
- 操作系统中模拟处理器调度.可以自由控制进程数,非常人性化!-operating system simulation processor scheduling. Free to control the process of a few, very humanity!
cpu 调度1
- 操作系统中的作业,CPU进程调度。PCB 控制块-operations of the operating system, CPU scheduling process. PCB control block
操作系统进程内存管理模拟
- 有关此程序的功能请见程序中的帮助菜单程序难点1:创建Windows xp中按钮样式解决方法:使用标签控件与形状控件一起形成此样式此方法缺点:由于标签没有TAB事件,所以不能使用键盘控制按钮。此缺点解方法:截取键盘事件,以响应TAB事件(时间有限,没有实现)程序难点2:实时与分时混合应用解决方法:置一FOR循环在TIMER中,先判断并响应时实进程,再置另一当循环在TIMER中,无时实时再执行分时进程。程序难点3:分页式内存管理的调度方式解决方法:具体方法见程序中的注释。程序难点4:基于优先级的调度
银行家算法
- 不加控制的程序并发执行很容易导致进程间发生死锁,因此现代操作系统设计的一个重要内容就是追求在付出代价较小的前提下,消除系统中的死锁现象。目前解决死锁的方法很多,使用银行家算法来控制资源分配,预防死锁发生,是其中较好的一种途径。本实验的目的是通过编程实现银行家算法,加深实验者对算法的理解。
多级反馈队列进程调度算法
- 完成单处理机系统中的进程调度,采用多级反馈队列的时间片轮转调度算法. 首先确定进程控制块的内容,进程控制块的组成方式,确定相关参数(如进程数、到达时间、服务时间、时间片大小等);然后完成进程创建原语、进程调度原语和进程撤销原语;
描述进程状态迁移过程
- 进程状态迁移.写一个程序描述进程状态迁移过程,理解进程概念、状态转换及其控制-Process state transition. The process of writing a program that describes the status of the migration process, the process of understanding the concept of state transition and its control
sourcecode
- 以上一共五个在VC环境下编写的程序,分别为串的基本操作,哈夫曼编译码系统,简单词法分析器,进程转换模拟控制,最短路径搜索算法。为节省上传时间,只有源代码,工程文件都删除了,但是上述源码都在本机上编译通过,并且能够正确运行。谢谢!-More than a total of five in the VC environment prepared by the procedure, namely the basic string operations, Huffman encoding and dec
xianchengtongbu
- 在访问临界区的问题当中,因为临界区在一个时间只允许一个进程访问,因此为了解决同步问题,我们要用到线程同步机制。首先创建两个共享数据资源的并发线程。在没有同步控制机制的情况下,观察某些异常现象。针对这样的问题,采用两个解决方案:①利用Windows和mutex机制,②采用软件方案,并比较这两种方案的性能优劣。-During his visit to these critical areas, as critical a time in a process only allows access to
1
- 进程状态迁移.写一个程序描述进程状态迁移过程,理解进程概念、状态转换及其控制-Process state transition. The process of writing a program that describes the status of the migration process, the process of understanding the concept of state transition and its control
1
- 函数功能:优先级法调度将进程插入到就绪队列算法 函数原型:void insert1(PCB *q) 函数参数:PCB *q 待插入的队列进程控制块 优先级越高,插入越靠 -Function parameters: PCB* q to insert in the queue process control blocks Higher priorities, insert the depend
ssaw3
- 嵌入式Linux监控终端的多进程控制.Linux embedded monitoring terminal for multiple process control-Linux embedded monitoring terminal for multiple process control
456789
- 跳跃进程的示范,Visual Basic控制其他软件运行-Hopping process, Model, Visual Basic control other software to run
shijianpian
- 有文本文件控制输入信息,每个进程都有自己的pcb。功能齐全-Have a text file control input information, each process has its own PCB. Complete function
进程调度
- 设计一个有 N个进程共行的进程调度程序。进程调度算法:采用最高优先数优先的调度算法(即把处理机分配给优先数最高的进程)和先来先服务算法。每个进程有一个进程控制块(PCB)表示。进程控制块可以包含如下信息:进程名、优先数、到达时间、需要运行时间、已用CPU时间、进程状态等等。进程的优先数及需要的运行时间可以事先人为地指定(也可以由随机数产生)。进程的到达时间为进程输入的时间。进程的运行时间以时间片为单位进行计算。每个进程的状态可以是就绪 W(Wait)、运行R(Run)、或完成F(Finish)三