CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 搜索资源 - 进程调度 时间片轮转

搜索资源列表

  1. Cpp1

    0下载:
  2. 进程调度 算法 动态优先权法 和时间片轮转法-failed to translate
  3. 所属分类:OS Develop

    • 发布日期:2017-04-14
    • 文件大小:2728
    • 提供者:
  1. Dispatch

    0下载:
  2. 模拟进程调度算法,包括先来先服务法,多级反馈法,时间片轮转法,静态优先级法和动态优先级法。-Simulation process scheduling algorithms, including a first-come first-served method, multi-level feedback method, round-robin method, static priority method and the dynamic priority method.
  3. 所属分类:Process-Thread

    • 发布日期:2017-04-14
    • 文件大小:3907
    • 提供者:wangbin
  1. jinchengtongbukezhixing

    0下载:
  2. 进程调度模拟系统--强占式高优先级优先、时间片轮转、最高响应比优先调度算法-Process scheduling simulation system- high-priority preemptive priority, round-robin, priority scheduling algorithm than the maximum response
  3. 所属分类:OS Develop

    • 发布日期:2017-04-01
    • 文件大小:263505
    • 提供者:xinmengyu
  1. process

    0下载:
  2. 该程序实现单处理系统的进程调度模拟,进程最多个数5个,采用时间片轮转法-The program implementation process of scheduling a single processing system simulation, process the maximum number of five, with round-robin method
  3. 所属分类:OS Develop

    • 发布日期:2017-04-06
    • 文件大小:3562
    • 提供者:zch
  1. word1

    0下载:
  2. 1、设置多个就绪队列,并给队列赋予不同的优先级数,第一个最高,依次递减。 2、赋予各个队列中进程执行时间片的大小,优先级越高的队列,时间片越小。 3、当一个新进程进入内存后,首先将其放入一个对列末尾,如果在一个时间片 结束时尚未完成,将其转入第二队列末尾。 4、当一个进程从一个对列移至第n个队列后,便在第n个队列中采用时间片轮转执行完。 5、仅当时间片空闲时,才调度第二个队列中的进程。 -1, setting a plurality of the ready queue,
  3. 所属分类:Data structs

    • 发布日期:2017-04-15
    • 文件大小:6053
    • 提供者:frog
  1. DiaoDu

    0下载:
  2. 内含多个进程调度算法,比如FIFO调度、短作业优先调度、时间片轮转调度等-include some process scheduling algorithm
  3. 所属分类:OS Develop

    • 发布日期:2017-04-08
    • 文件大小:45328
    • 提供者:james
  1. OS_1

    0下载:
  2. 处理机调度算法,模拟处理机对进程的调度算法,采用时间片轮转法-Processor scheduling algorithm, the simulated processor to process scheduling algorithm, using the rotation law of the time slice
  3. 所属分类:Process-Thread

    • 发布日期:2017-04-02
    • 文件大小:26220
    • 提供者:陈浩
  1. os5

    0下载:
  2. “进程调度算法的实现”。 其实验目的是: 1实现先来先服务FCFS、短作业优先SJF以及时间片轮转调度算法。 2 了解上述3种算法的机理。 -Process scheduling algorithm to achieve. " The purpose of the experiment is as follows: 1 first-come first-served FCFS, priority to short jobs SJF and round-robin sche
  3. 所属分类:OS Develop

    • 发布日期:2017-03-27
    • 文件大小:2402
    • 提供者:pang
  1. round_robin

    0下载:
  2. 操作系统时间片轮转调度算法输入数个进程及时间片时间输出调度队列-Operating system round-robin scheduling algorithm input time output of the process and time slice scheduling queue
  3. 所属分类:OS Develop

    • 发布日期:2017-03-27
    • 文件大小:689
    • 提供者:god
  1. Test

    0下载:
  2. 一、实验目的 (1)掌握进程状态转换过程 (2)掌握时间片轮转的进程调度算法; (3)掌握带优先级的进程调度算法; 二、实验内容 (1)自定义PCB的数据结构; (2)使用带优先级的时间片轮转法调度进程,每运行一个时间片,优先级减半。 (3)命令集 A)create 随机创建进程,进程的优先级与所需要的时间片随机决定; B)round 执行1次时间片轮转操作,其方法为运行高优先级队列的第1个,再降低其优先级,插入到相应的队列中。 C)ps 查看当前进程状态
  3. 所属分类:SCM

    • 发布日期:2017-04-01
    • 文件大小:17240
    • 提供者:mengmeng
  1. ProcessManage

    0下载:
  2. 1 操作系统课程设计 2 模拟CPU进程调度 3 实现时间片轮转调度算法 4 实现最短作业优先算法-1 operating systems course design 2 simulation CPU process scheduling 3 round-robin scheduling algorithm 4 shortest job first algorithm
  3. 所属分类:OS Develop

    • 发布日期:2017-03-29
    • 文件大小:14306
    • 提供者:
  1. OSControl

    0下载:
  2. 用C#写的操作系统进程的调度,有FIFO调度,时间片轮转调度等算法,需要DevExpress2011V2插件支持-C# to write the operating system process scheduling, FIFO scheduling, round-robin scheduling algorithm needs DevExpress2011V2 plug-in support
  3. 所属分类:OS Develop

    • 发布日期:2017-03-30
    • 文件大小:585859
    • 提供者:Meteor
  1. jinchengjiaodu

    0下载:
  2. 本实验模拟在单处理机情况下的处理机调度问题,加深对进程调度的理解。 1.设计一个按先来先服务的调度算法实现处理机调度的程序; 2. 设计一个按优先权调度算法实现处理机调度的程序; 3.设计按时间片轮转算法实现处理机调度的程序。-本实验模拟在单处理机情况下的处理机调度问题,加深对进程调度的理解。 1.设计一个按先来先服务的调度算法实现处理机调度的程序;
  3. 所属分类:OS Develop

    • 发布日期:2017-03-29
    • 文件大小:406547
    • 提供者:王海颖0810
  1. jcddsf

    0下载:
  2. 进程调度算法,包括优先权调度算法和时间片轮转调度算法-Process scheduling algorithms, including priority scheduling algorithm and round-robin scheduling algorithm
  3. 所属分类:Process-Thread

    • 发布日期:2017-04-10
    • 文件大小:1582345
    • 提供者:bmbboy
  1. RRw

    0下载:
  2. 实现了用时间片轮转法调度虚拟进程。-Round-Robin scheduling virtual process time slice.
  3. 所属分类:Process-Thread

    • 发布日期:2016-01-25
    • 文件大小:517120
    • 提供者:Dwxiao
  1. LGY_CPU_Scheduler

    0下载:
  2. 一、在WINDOWS中双击DEBUG目录中的EXE文件直接运行,可能会没有显示结果窗口就关闭了,这不是程序错误,解决方法是: 1、“开始->程序->附件-命令提示符”,打开DOS命令窗口。 2、改变当前目录至EXE文件所在目录;(或者将EXE文件和测试用的文本文件一并复制到当前目录)。 3、输入EXE文件的完整名称(含后缀名)运行即可。(为方便输入,可以重命名EXE文件。) 二、 本程序包括:FIFO,优先级调度算法(静态优先级),时间
  3. 所属分类:Windows Kernel

    • 发布日期:2017-04-03
    • 文件大小:297668
    • 提供者:王五
  1. OS_RR-and-SJF

    0下载:
  2. 操作系统 进程调度模拟设计——时间片轮转、强占式短进程优先算法-Operating system process scheduling simulation design- round-robin preemptive short process first algorithm
  3. 所属分类:OS Develop

    • 发布日期:2017-03-26
    • 文件大小:36549
    • 提供者:包包
  1. ProcessControl

    0下载:
  2. 实验1 进程调度 一、实验目的 通过实验加强对进程调度算法的理解和掌握。 二、实验内容 编写程序实现基于优先级的时间片轮转调度算法。 -Experiment a process schedulingFirst, the purpose of the experimentExperiments to enhance understanding and mastering of the process scheduling algorithm.Second, exper
  3. 所属分类:OS Develop

    • 发布日期:2017-03-31
    • 文件大小:863
    • 提供者:姚继涛
  1. the-process-of-scheduling-algorithm-

    0下载:
  2. 进程调度算法,包括先来先服务,短进程优先,高响应比优先,时间片轮转调度,优先级调度算法,-Process scheduling algorithms, including the first come first served, short process priority, high-response than the priority, round-robin scheduling, priority scheduling algorithm, the process of scheduli
  3. 所属分类:Data structs

    • 发布日期:2017-04-09
    • 文件大小:1133398
    • 提供者:殷学廉
  1. shijianpianlunzhuan

    0下载:
  2. 模拟操作系统中CPU如何调度外部进程的算法——时间片轮转法-The algorithm simulated operating system how the CPU scheduling external process- round-robin method
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-04
    • 文件大小:250384
    • 提供者:陈慧
« 1 2 ... 5 6 7 8 9 1011 12 13 14 »
搜珍网 www.dssz.com