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

搜索资源列表

  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. diaodu

    0下载:
  2. 用时间片轮转算法和优先度算法实现进程的调度。 用vc++编程。-Round Robin with a time slice and priority process scheduling algorithm. The programming with vc++.
  3. 所属分类:OS Develop

    • 发布日期:2017-11-11
    • 文件大小:274118
    • 提供者:hanya
  1. pcb

    0下载:
  2. 设计一个有N个进程并发的进程调度程序,采用时间片轮转算法。 Ø 每一个进程用一个进程控制块PCB表示。PCB包含信息有:进程名name,进程号id,进程状态state,进程所需运行时间need_time,进程运行时间run_time。 Ø 进程所需的运行时间人为指定。进程运行时间以时间片为单位进行计算。(程序中以按任意键表示运行一次CPU时间片) Ø 每个进程的状态有就绪W,运行R,和完成F(撤销进程)。 Ø
  3. 所属分类:OS Develop

    • 发布日期:2017-11-05
    • 文件大小:1059
    • 提供者:拓拓
  1. FCFSandRR

    0下载:
  2. 时间片轮转调度,具体做法是调度程序每次把 CPU 分配给就绪队列首进程使用一个时间片。当这个时间片结束时,就强迫一个进程让出处理器,让它排列到就绪队列的尾部,等候下一轮调度。实现这种调度要使用一个间隔时钟。当一个进程开始运行时,就将时间片的值置入间隔时钟内,当发生间隔时钟中断时,就表明该进程连续运行的时间已超过一个规定的时间片。此时,中断处理程序就通知处理器调度进行处理器的切换工作。-The round-robin scheduling, specific practices scheduler
  3. 所属分类:Other systems

    • 发布日期:2017-12-03
    • 文件大小:356229
    • 提供者:kong
  1. OS-process-

    0下载:
  2. 该段代码为操作系统进程调度的算法分析,内含三种算法FCFS、SJF、时间片轮转,在程序结束之前会对三种算法进行简单的分析。-The sections of the code for the operating system process scheduling algorithm analysis, containing three algorithms FCFS, SJF, time slice rotation, a simple analysis is interested in the
  3. 所属分类:Process-Thread

    • 发布日期:2017-11-13
    • 文件大小:1333
    • 提供者:曲文集
  1. time

    1下载:
  2. 处理机调度是操作系统中非常重要的部分。为深入理解进程管理部分的功能,设计时间片轮转法进行CPU调度算法,模拟实现处理机的调度。通过本次课程设计理解进程调度的概念,深入理解进程控制的功能、进程的创建与删除以及进程各个状态之间的转换过程,实现时间片轮转算法调度进程。-PROCESSING scheduling is a very important part of the operating system. For an in-depth understanding of the function
  3. 所属分类:OS Develop

    • 发布日期:2017-11-12
    • 文件大小:1691
    • 提供者:syn
  1. Cycle-time-slice-rotary-algorithm

    0下载:
  2. 实验任务 设计一个程序,根据不同的调度算法模拟操作系统对进程的调度。 调度算法: 时间片循环法 1、 设计进程控制块PBC表结构,适用循环时间片轮转算法。 2、 PBC结构通常包括以下信息:进程名、进程优先数、轮转时间片、进程的CPU时间,进程状态等。根据调度算法不同,PCB结构可作适当的调整。 3、 建立进程队列。对不同的算法编制不同的入链程序。 程序要求达到的运行效果:在设置好进程数量、调度算法后,系统能按设定的参数运行,并在屏幕上交替显示就绪队列和完成队列的进程名等
  3. 所属分类:Process-Thread

    • 发布日期:2017-11-11
    • 文件大小:10942
    • 提供者:后双
  1. os

    0下载:
  2. 一个操作系统的进程调度的实验。三种调度算法分别为 FCFS、优先级、时间片轮转。 其中优先级算法设置了三个级别的优先级。分别为0、1、2 。0为最高 2为最低。-An operating system process scheduling experiment. The three scheduling algorithm respectively FCFS, priority, time slice rotation. The priority algorithm set three leve
  3. 所属分类:Console

    • 发布日期:2017-11-22
    • 文件大小:82558
    • 提供者:程龙
  1. jinchengguanli

    0下载:
  2. 操作系统学末作业有关进程管理,进程调度算法有FIFO,优先数调度算法,时间片轮转调度算法,分级调度算法。-End operating system to learn about the job process management, process scheduling algorithms are the FIFO priority number scheduling algorithm, round-robin scheduling algorithm, hierarchical sched
  3. 所属分类:Other systems

    • 发布日期:2017-12-10
    • 文件大小:1000
    • 提供者:影子
  1. test2

    0下载:
  2. 仿真模拟读者写者问题,采用信号量机制,用时间片轮转方法调度进程-Simulation readers who write semaphore mechanism, with round-robin scheduling process
  3. 所属分类:Other windows programs

    • 发布日期:2017-11-20
    • 文件大小:1801
    • 提供者:long
  1. process-scheduling

    0下载:
  2. 操作系统进程调度,包括最高优先数优先算法、简单时间片轮转调度算法、多级反馈队列调度算法-Operating system process scheduling, including the highest priority first algorithm, a simple time-slice round-robin scheduling algorithm, multi-level feedback queue scheduling algorithm
  3. 所属分类:OS Develop

    • 发布日期:2017-11-17
    • 文件大小:242702
    • 提供者:潘宝
  1. process

    0下载:
  2. 该程序是通过mfc图形化界面演示了进程调度的过程,可以选择FCFS,最高优先级和时间片轮转法来展示进程调度。-The program is through the mfc graphical interface demo process scheduling process, you can choose the FCFS process scheduling highest priority and round-robin method to show.
  3. 所属分类:Windows Kernel

    • 发布日期:2017-11-25
    • 文件大小:2398313
    • 提供者:罗赟
« 1 2 ... 5 6 7 8 9 1011 12 13 »
搜珍网 www.dssz.com