Welcome![Sign In][Sign Up]
Location:
Search - rr

Search list

[Mathimatics-Numerical algorithmsrr轮询算法

Description: rr轮询算法
Platform: | Size: 81023 | Author: luoyutingfeng | Hits:

[Documentsrr

Description: 大整数的又一种操作-Big Integer another operation
Platform: | Size: 25600 | Author: 杨向前 | Hits:

[Process-Thread作业111

Description: 进程调度的4个算法 含分个和合集 FCFS RP RR SJF-process scheduling algorithm with four points 000 and Collection FCFS RP RR SJF
Platform: | Size: 4096 | Author: YY | Hits:

[OtherRR_HPF

Description: 时间片调度与动态优先权算法的比较,时间片轮转算法(RR),基于优先级的调度算法(HPF)-time slice and dynamic priority scheduling algorithm, the algorithm time Web tablets (RR), Priority- Based Scheduling Algorithm (HPF)
Platform: | Size: 296960 | Author: 马全 | Hits:

[CSharprr

Description: 数据分类读取,数据文件中的数据 用空格 分割符号分开的东西基本上都可以顺利分隔开-Classification of data read, data files in the data symbols separated by a space partition is basically what can be smoothly separated from
Platform: | Size: 10240 | Author: | Hits:

[Data structsRR

Description: 8个进程的改进版CPU schedule 算法-RoundRobin-所有上载程序都是原创,请不要用于商业用途
Platform: | Size: 7168 | Author: tennic | Hits:

[OS programRR

Description: Round-robin scheduling algorithm is one of the simplest scheduling algorithms. It is designed especially for time-sharing systems. The ready queue is treated as a circular queue. The algorithm assigns a time slice(also called time quantum) to each process in the ready queue in order, handling all processes without priority. A maximum of one time slice is allocated at once. If the remaining request is less than a time slice, only the remaining request time is allocated. Round-robin scheduling is both simple and easy to implement. It is also starvation-free.
Platform: | Size: 148480 | Author: 邓思兵 | Hits:

[Program docrr

Description: 软件无线电中抽取滤波器的研究与FPGA实现.pdf-Software Radio Research and decimation filter FPGA realize. Pdf
Platform: | Size: 205824 | Author: 郭坚 | Hits:

[OS DevelopRR

Description: 设计一个按时间片轮转法实现处理器调度的程序 (1)假定系统有5个进程,每个进程用一个PCB来代表。PCB的结构为: • 进程名——如Q1~Q5。 • 指针——把5个进程连成队列,用指针指出下一个进程PCB的首地址。 • 要求运行时间——假设进程需要运行的单位时间数。 • 已运行时间——进程已运行的单位时间数,初始值为0。 • 状态——假设两种状态,就绪和结束,用R表示就绪,用E表示结束。初始状态都为就绪状态。 (2) 每次运行之前,为每个进程任意确定它的“要求运行时间”。 (3) 把5个进程按顺序排成循环队列,用指针指出队列连接情况。用一个标志单元记录轮到运行的进程。处理器调度总是选择标志单元指示的进程运行,对所指的进程,将其“已运行时间”加1。 (4) 进程运行一次后,若“要求运行时间”等于“已运行时间”,则将状态改为“结束”,退出队列,否则将继续轮转。 (5) 若就绪队列为空,结束,否则转到(3)重复。-err
Platform: | Size: 2048 | Author: | Hits:

[JSP/JavaprocesssimulateJbuild

Description: 设计多个调度算法,如FB FB2 RR HRT等模拟进程调度,在Jbuild环境下编译通过-The design of a number of scheduling algorithms, such as FB FB2 RR HRT, such as simulation of the process of scheduling, the compiler Jbuild environment through
Platform: | Size: 39936 | Author: 陈达 | Hits:

[JSP/Javarr

Description: 这是个用java编写的可以求二元一次方程的java applet的源代码主要是割线法-This is can be prepared using java binary一次方程for the java applet source code is mainly secant method
Platform: | Size: 5120 | Author: 赛巴 | Hits:

[Otherrr

Description: 操作系统实验 模拟时间片轮转调度。先来先服务,每个进程运行一个时间片。c语言的图形界面-Experimental simulation of the operating system time slice scheduling rotation. First Come First Served, each process runs a time slice. c language, graphical interface
Platform: | Size: 2048 | Author: liuyi | Hits:

[P2Pping

Description: 该程序在 Windows 2000 Pro+SP4 下编译调试通过(Visual C++ 6.0 IDE环境)。 需要Winsock2支持。 1.该程序采用了winsock的原始套接字编程,实现了基本的Ping功能,使用方法:ping host,默认连续发送4个回显请求。 2.该程序中对ICMP首部的定义采用了非标准形式。即将选项数据中保存时间戳的头4个字节也定义为ICMP首部的一部分,这样ICMP首部就被定义为12个字节。这样主要做主要是为了编程的实现与理解上的方便。 3.根据习惯ICMP首部的标示符字段填充了进程ID。 4.该程序实现了在IP首部记录路由的RR功能,最多记录9个地址。-The program in Windows 2000 Pro+ SP4 adopted under the compiler debugging (Visual C++ 6.0 IDE environment). Winsock2 support needs. 1. The program uses the original socket winsock programming, to achieve the basic Ping function, use: ping host, the default for sending echo request 4. 2. The program of the first definition of ICMP uses non-standard forms. Options data is about to save the first timestamp 4 bytes are also defined as the first part of ICMP, so that the first ICMP was defined as 12 bytes. Mainly do so primarily to the realization and understanding of programming convenience. 3. In accordance with customary ICMP identifier of the first field filled with the process ID. 4. The program achieved the first record in the IP routing RR function, a maximum of nine address records.
Platform: | Size: 13312 | Author: 周晓伟 | Hits:

[Process-Threadscheduling

Description: 设计一程式可输入 1、几个行程 2、每个行程各别的CPU暴冲时间(毫秒) 3、到达时间 4、优先顺序 并求出 1、FCFS 2、SJF - 不可抢先 3、SJF - 可抢先 4、Priority 5、RR 平均等待时间-Design a program may enter 1, 2 several trips, each trip of the other CPU storms red time (ms) 3, the arrival time 4, and obtained the order of priority 1, FCFS 2, SJF- can not be the first to 3, SJF-- can be the first to 4, Priority 5, RR average wait time
Platform: | Size: 2048 | Author: attackk | Hits:

[Process-Threadrr(0)

Description: 很简单的一个操作系统进程调度方法的实现:时间片轮转法。-A very simple operating system process scheduling method realize: time slice movement.
Platform: | Size: 1024 | Author: | Hits:

[matlabrr

Description: 这个是用matlab写的测回法程序,很好的望大家一定要踊跃下载 -This is measured using matlab written back to law procedures, a good look we must actively download
Platform: | Size: 3072 | Author: zhaozhenguo | Hits:

[Symbianrr

Description: symbian s60 SetttingItemList 示例,是初学者学习的好帮手,我就是用这些例子入门Symbian的,推荐下载.. -symbian s60 SetttingItemList example, is a good helper for beginners to learn, I use these examples of entry-Symbian download ..
Platform: | Size: 11264 | Author: 韩东甫 | Hits:

[OS DevelopFCFS-RR

Description: FCFS 时间片轮转 时间片 轮转法 调度的算法 最高优先数算法基本思想 多级反馈队列调度实现思想 最高优先数调度算法(PCB)-FCFS Time Slice Time Slice rotary movement of the highest priority scheduling algorithm for several basic idea of multi-level algorithm Feedback Queue Scheduling the highest priority to achieve a number of ideological and scheduling algorithm (PCB)
Platform: | Size: 133120 | Author: caidongyun | Hits:

[OS programRR

Description: 此程序模拟进程调度,模拟系统调度算法RR算法-This program uses RR scheduling algorithm simulation system
Platform: | Size: 2048 | Author: Howard | Hits:

[Linux-Unixrr-master

Description: rr is a lightweight tool for recording and replaying execution of applications (trees of processes and threads).
Platform: | Size: 1571840 | Author: Magnificent丶7 | Hits:
« 12 3 4 5 6 7 8 9 10 ... 15 »

CodeBus www.codebus.net