搜索资源列表
conan
- 操作系统实验课程中模拟虚拟存储器的算法 使用先进先出调度算法实现-experimental courses operating system virtual memory simulation algorithm using FIFO scheduling algorithm
操作系统部分算法模拟软件
- 本软件设计的目的是: 通过编写程序,将操作系统部算法以可视化的方式模拟出来,最终达到对这些算法有一个比深的理解。 本软件演示的算法有: 多种资源的银行家算法 可变分区存储算法 生产者——消费者(PV操作模拟) FIFO算法和LRU算法(页面淘汰算法) 请求分页算法 CUP——I/0利用率分析 开发工具: Delphi 7.0 -The software is designed to : develop procedures of the opera
linux-fifo
- 在linux下使用C语言开发的进程控制程序-the use of C language development process control procedures
wgq2
- 进程调度 进程调度算法有FIFO,优先数调度算法,时间片轮转调度算法,分级调度算法,目前主要是考FIFO和优先数调度算法(静态优先级)。 -process scheduling process FIFO scheduling algorithm is priority number scheduling algorithm, time-Cycle Scheduling algorithm, grade scheduling algorithm, the key is to test
threadphilosopher
- 利用线程方案实现实现哲学家问题.设置五个信号量代表五把叉子,初使值均为1,表示5把叉子均可以取,设置五个线程代表5个哲学家,其值分别为0~4,规定奇数号的哲学家先拿起他左边的叉子,然后再去拿他右边的叉子 而偶数号的哲学家则相反.按此规定,将是1,2号哲学家竞争1号叉子,3,4号哲学家竞争3号叉子.即五个哲学家都竞争奇数号叉子,获得后,再去竞争偶数号叉子,最后总会有一个哲学家能获得两支叉子而进餐。而申请不到的哲学家进入阻塞等待队列,根FIFO原则,则先申请的哲学家会较先可以吃饭,因此不会出现饿死的
yemianguanli
- 设计一个请求页式存储管理方案。并编写模拟程序实现之。产生一个需要访问的指令地址流。它是一系列需要访问的指令的地址。为不失一般性,你可以适当地(用人工指定地方法或用随机数产生器)生成这个序列,使得 50 %的指令是顺序执行的。 25 %的指令均匀地散布在前地址部分, 25 %的地址是均匀地散布在后地址部分。页面替换算法采用 Fifo 页面替换算法,在发生页替换时,不仅需要更改页表,还需将被替换的页回到辅存。
threadpool-0_2_4-src
- boost线程池库。 boost库中未包含线程池,但sourceforge上有了实现,该线程池简单易用,支持丰富的调度策略(fifo, lifo和priority)。
操作系统算法
- 操作系统中的先进先出,最佳淘汰等算法的比较。-the FIFO operating system, such as the best out of the comparison algorithm.
FIFO
- 进程调度算法有FIFO,优先数调度算法,时间片轮转调度算法,分级调度算法,把各种算法用C语言实现-Process scheduling algorithm FIFO, priority number scheduling algorithm, time slice rotation scheduling, hierarchical scheduling algorithm, the various algorithms using C language
jincheng
- 给出几个进程的名称 ,状态,所需时间以及优先及 ,分别按先进先出算法和优先及调度算法来进行进程调度,并计算周转时间。-Several processes are given the name, status, priority and time required, as well as, respectively, by the FIFO algorithm and the priority and scheduling algorithm for process scheduling, and
FIFO
- 用于模拟进程调度中的先到先服务算法 其中进程不是5个的话 可以修改#define中N 的变量 需要几个进程修改成几就行了-Used to simulate the process of scheduling algorithm First come first serve process is not one of the five can be amended if# Define variables in the N process takes a few modifications int
sto
- 设计一个请求页式存储管理方案。并编写模拟程序实现。 产生一个需要访问的指令地址流。它是一系列需要访问的指令的地址。为不失一般性,你可以适当地(用人工指定地方法或用随机数产生器)生成这个序列。为简单起见,页面淘汰算法采用FIFO页面淘汰算法,并且在淘汰一页时,只将该页在页表中抹去。而不再判断它是否被改写过,也不将它写回到辅存。 -Page request to design a storage management program. And the preparation of simul
jinchengdiaodu
- 通过先进先出算法和轮询算法模拟实现进程调度-Through the FIFO algorithm and simulation to achieve the process of polling scheduling algorithm
fifosuanfa
- 模拟操作系统虚拟存储中的页面置换算法采用FIFO算法,使用的是C语言编程 -Simulate the operating system virtual memory page replacement algorithms used in the FIFO algorithm, using a C language programming
fifo
- 完成进程调度,页面置换算法中先进先出算法(FIFO)的源代码,对学习操作系统很有用的~-The completion of the process of scheduling, the page replacement algorithm in the FIFO method (FIFO) of the source code, useful for learning the operating system ~
cipandiaodusuanfa
- 磁盘驱动调度对磁盘的效率有重要影响。磁盘驱动调度算法的好坏直接影响辅助存储器的效率,从而影响计算机系统的整体效率。 常用的磁盘驱动调度算法有:最简单的磁盘驱动调度算法是先入先出(FIFO)法。这种算法的实质是,总是严格按时间顺序对磁盘请求予以处理。算法实现简单、易于理解并且相对公平,不会发生进程饿死现象。但该算法可能会移动的柱面数较多并且会经常更换移动方向,效率有待提高。-Disk drive scheduling efficiency of the disk have a major
Process
- 用java语言编写的带有界面的模拟操作系统进程调度的程序,可随机生成10个进程,采用三种算法执行,即——1-先进先出调度算法 2-基于优先数的调度算法 3-最短执行时间调度算法-Java language interface with the operating system process scheduling simulation program, can be randomly generated 10 process, the implementation of the three al
process
- window系统下模拟进程调度。。先进先出,优先级调度-window system simulation process scheduling. . FIFO, priority scheduling, and so on. . .
lock-free-wait-free-circularfifo
- lock-free, wait-free 先进先出队列,用于多线程编程中-lock-free, wait-free FIFO queue for multithreaded programming
vm
- 虚拟内存页面置换算法(FIFO、LRU)-FIFO、LRU FIFO、LRUFIFO、LRUFIFO、LRU