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

搜索资源列表

  1. os2

    0下载:
  2. 处理器系统的进程调度编写程序完成单处理机系统中的进程调度,要求采用时间片轮转调度算法。实验具体包括:首先确定进程控制块的内容,进程控制块的组成方式;然后完成进程创建原语和进程调度原语;最后编写主函数对所作工作进程测试。-processor systems process scheduling procedures for the preparation of single-processor system to complete the scheduling process, requiring
  3. 所属分类:操作系统开发

    • 发布日期:2008-10-13
    • 文件大小:200044
    • 提供者:成龙
  1. H1

    0下载:
  2. 进程优先算法,进程调度是处理机管理的核心内容。本实验要求用C语言编写和调试一个简单的进程调度程序。通过本实验可以加深理解有关进程控制块、进程队列的概念,并体会和了解优先数和时间片轮转调度算法的具体实施办法-process priority algorithm, the process of scheduling processor is the core content management. The experiment called for using the C language and
  3. 所属分类:C#编程

    • 发布日期:2008-10-13
    • 文件大小:1717
    • 提供者:yuyu
  1. 多级反馈轮转法

    0下载:
  2. 采用多级反馈轮转法调度算法,从而了解多级反馈轮转调度算法的优点与缺点. 先要随机产生几个进程,初始化进程.确定进程的的优先顺序,定义时间片的长度.-multilevel feeding and rotary schedule method has been used to understand its advantages and drawbacks. First, several processes have been created and initialized, their priori
  3. 所属分类:Windows编程

    • 发布日期:2008-10-13
    • 文件大小:2124
    • 提供者:林子建
  1. processdoing.rar

    0下载:
  2. 操作系统中进程调度算法的模拟 可以实现先来先服务 短作业有限 和时间片轮转算法,Operating system scheduling algorithm in the simulation process can be achieved first-come first-serve limited and short operating time slice Round Robin
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-13
    • 文件大小:1641
    • 提供者:zhou
  1. FIFO

    0下载:
  2. 进程调度算法有FIFO,优先数调度算法,时间片轮转调度算法,分级调度算法,把各种算法用C语言实现-Process scheduling algorithm FIFO, priority number scheduling algorithm, time slice rotation scheduling, hierarchical scheduling algorithm, the various algorithms using C language
  3. 所属分类:Process-Thread

    • 发布日期:2017-04-01
    • 文件大小:5490
    • 提供者:黄毛
  1. caozuoxitong

    0下载:
  2. 短作业优先、先来先服务、高响应比、时间片轮转等四个进程调度算法的模拟实现-Short jobs first, first-come first-served, high-response ratio, round-robin scheduling algorithm in four process simulation to achieve
  3. 所属分类:GUI Develop

    • 发布日期:2017-05-13
    • 文件大小:3478141
    • 提供者:唐帆
  1. process-simulate

    0下载:
  2. c++模拟系统进程调度 包括FCFS,时间片轮转,多级反馈,静态优先级,动态优先级-c++ simulation system process scheduling including FCFS, round-robin, multi-level feedback, static priority, dynamic priority
  3. 所属分类:OS Develop

    • 发布日期:2017-05-04
    • 文件大小:1194781
    • 提供者:lijie
  1. 5

    0下载:
  2. 进程调度-基于时间片轮转调度算法,操作系统实验,C++编程,免费下载.windows编程.-Process scheduling- scheduling algorithm based on time slice rotation, the operating system experiment, C++ programming, free download. Windows programming.
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-05
    • 文件大小:1172
    • 提供者:xionghuihua
  1. operating

    0下载:
  2. 进程调度模拟设计——时间片轮转、优先级法-Process scheduling simulation design- time slice rotation, priority method
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-17
    • 文件大小:89133
    • 提供者:聂晶
  1. jinchengdiaodu

    0下载:
  2. 进程调度算法包括:时间片轮转法,短作业优先算法,动态优先级算法。 2)可选择进程数量 3)本程序包括三种算法,用C或C++语言实现,执行时在主界面选择算法,进入子页面后执行,显示结果。-The process of scheduling algorithms: round-robin method, short job first algorithm, the dynamic priority-level algorithm. 2) choose the number of proc
  3. 所属分类:Process-Thread

    • 发布日期:2017-04-08
    • 文件大小:553913
    • 提供者:wuwenqin
  1. linux

    0下载:
  2. linux模拟进程调度的五种经典算法,短作业优先算法,先来先服务算法,时间片轮转法算法,多级反馈调度,优先级调度算法。-process simulation scheduling a first-come first-served algorithm
  3. 所属分类:Linux驱动

    • 发布日期:2017-04-01
    • 文件大小:321445
    • 提供者:周攀
  1. os

    0下载:
  2. 实现模拟的进程调度:时间片轮转,高优先级,多级反馈队列-Analog of the process scheduling: time slice rotation, high-priority, multi-level feedback queue
  3. 所属分类:OS Develop

    • 发布日期:2017-04-01
    • 文件大小:577356
    • 提供者:wumai
  1. bao

    0下载:
  2. 多级反馈队列进程调度算法 1. 实验目的: 用高级语言编写和调试一个进程调度程序,以加深对进程的概念及进程调度算法的理解。 2. 实验内容: 编写一个模拟程序,完成单处理机系统中的进程调度,采用多级反馈队列的时间片轮转调度算法. 实验具体包括:首先确定进程控制块的内容,进程控制块的组成方式,确定相关参数(如进程数、到达时间、服务时间、时间片大小等) 然后完成进程创建原语、进程调度原语和进程撤销原语 最后编写主函数,上机实验并取得结果数据。 -The process of
  3. 所属分类:Windows Develop

    • 发布日期:2017-03-22
    • 文件大小:2321
    • 提供者:Jun
  1. FIRST2

    0下载:
  2. 编写并调试一个模拟的进程调度程序,采用“轮转法”调度算法对五个进程进行调度。   轮转法可以是简单轮转法、可变时间片轮转法,或多队列轮转法。 -Write and debug a simulation of the process scheduling program, a "Round-Robin" scheduling algorithm for scheduling the five process. Round-Robin Round-Robin method can be
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-07
    • 文件大小:1084
    • 提供者:sylvia
  1. OS5

    0下载:
  2. 程序开始运行时选择调度算法,创建进程时输入进程所需服务时间以及到达时间。 根据当前所设定调度算法,连续调度所有进程,并计算每个进程的周转时间和带权周转时间、所有进程的平均周转时间和平均带权周转时间。 调度时应适当输出调度过程中各进程状态队列的变化情况以及进程的已执行时间、还需服务时间(针对时间片轮转算法)。-Routine is executed choice when scheduling algorithm, create process input process required
  3. 所属分类:OS Develop

    • 发布日期:2017-11-13
    • 文件大小:4134
    • 提供者:若瓷
  1. Cpp1

    0下载:
  2. 模拟操作系统中进程调度,时间片轮转,优先级调度。用PCB代表进程,随机生成n个进程-Simulation of the operating system process scheduling, time slice rotation, priority scheduling. With PCB on behalf of the process of randomly generated n-process
  3. 所属分类:Windows Kernel

    • 发布日期:2017-04-08
    • 文件大小:1781
    • 提供者:x
  1. diaodu

    0下载:
  2. 主要使用了时间片轮转算法和高响应比算法模拟进程的调度过程-The main use of Round Robin time slice and high response ratio algorithm simulation process for the activation process
  3. 所属分类:OS Develop

    • 发布日期:2017-04-09
    • 文件大小:30526
    • 提供者:wuweiwei
  1. sjp

    0下载:
  2. 在多道程序或多任务系统中,系统同时处于就绪态的进程有若干个。为了使系统中的各进程能有条不紊地进行,必须选择某种调度策略,以选择一进程占用处理机。时间片轮转算法-Procedures in the multi-channel or multi-task system, the system in a ready state at the same time there are a number of processes. In order to make the process system ca
  3. 所属分类:Process-Thread

    • 发布日期:2017-03-30
    • 文件大小:1988
    • 提供者:候莹莹
  1. RelatedtotheprocessofschedulingandtimesliceoftheCr

    0下载:
  2. 有关进程调度以及时间片轮转调度算法的C实现-Related to the process of scheduling and time slice of the C rotation scheduling algorithm to achieve
  3. 所属分类:Process-Thread

    • 发布日期:2017-04-12
    • 文件大小:1678
    • 提供者:hhb
  1. 91331976jinchengtiaodu

    0下载:
  2. 进程管理之时间片转法程序,结合时间片轮转法来调度和管理进程的VC程序-Process management of time slice to law procedures, combined with the time slice scheduling rotation law of the VC process and management procedures
  3. 所属分类:Process-Thread

    • 发布日期:2017-05-03
    • 文件大小:676897
    • 提供者:powerman
« 1 2 3 4 5 67 8 9 10 11 ... 14 »
搜珍网 www.dssz.com