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

搜索资源列表

  1. uCOS-II_on_VC

    0下载:
  2. 传统的UCOS-Ⅱ只支持优先级抢占型调度。它不支持基于时间片轮转调度。 相对于其它的改进,本文修改后的UCOS不支持优先级抢占,只根据优先级创建进程,然后按时间片轮转来调度。 另附一些我学习UCOS调度时参考的资料,希望对大家有所帮助。-Traditional UCOS-Ⅱ only support priority preemptive scheduling. It does not support the rotation based on time slice scheduling
  3. 所属分类:uCOS

    • 发布日期:2017-05-15
    • 文件大小:4070201
    • 提供者:zhou
  1. diaodu

    0下载:
  2. 进程调度算法,有C++实现,采用了先来先服务和时间片轮转法两种方法 来实现-Process scheduling algorithms, there are C++ implementation, using the first come first served and the time slice Round-Robin are two ways to achieve
  3. 所属分类:OS Develop

    • 发布日期:2017-04-06
    • 文件大小:9941
    • 提供者:刘可
  1. 0

    0下载:
  2. 基于优先级的时间片轮转进程调度算法,操作系统课程设计。-Priority-based time slice rotation process scheduling algorithms, operating systems curriculum.
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-13
    • 文件大小:2096
    • 提供者:chenbo
  1. jinchengdiaodu

    0下载:
  2. 用各种算法实现进程调度的模拟,有先来先服务算法、静态抢占算法、动态抢占优先级算法以及时间片轮转法,用MFC实现,界面优美功能完善。-Process scheduling algorithm with a variety of simulation, there is first come first serve algorithm, static capture algorithm, dynamic priority algorithm and the time to seize the fil
  3. 所属分类:GUI Develop

    • 发布日期:2017-05-25
    • 文件大小:8642437
    • 提供者:孟萌
  1. VC

    0下载:
  2. 简单 VC++ 实现进程调度,用时间片轮转法实现-VC implementation process scheduling
  3. 所属分类:OS Develop

    • 发布日期:2017-04-02
    • 文件大小:214899
    • 提供者:阿木
  1. MFCreport

    0下载:
  2. 一个有N个进程并发的进程调度程序,要求采用最高优数优先算法,时间片轮转法,多级反馈队列调度算法这三种算法-N a process complicated by a process scheduler, requires the highest priority number of priority algorithm, the time slice rotation, multi-level feedback queue scheduling algorithm for these three
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-08
    • 文件大小:695765
    • 提供者:蔡建
  1. time

    0下载:
  2. visual studio 6.0 实现时间片轮转RR进程调度算法-visual studio 6.0 RR process to achieve cycle time slice scheduling
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-06
    • 文件大小:689777
    • 提供者:郑细强
  1. wenjianguanli

    0下载:
  2. 1)程序主界面可选择进程调度算法进行演示,其中调度算法包括:时间片轮转法,短作业优先算法,动态优先级算法。 2)然后进入子界面可选择进程数量和输入进程运行所需要的时间。 3)每个进程的优先数由随机函数产生且优先数随等待时间而变化,执行并显示结果。 -1) The program can choose the main interface shows the process of scheduling algorithm, scheduling algorithm which incl
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-03-29
    • 文件大小:8234
    • 提供者:代浩
  1. ClockPageReplacement

    0下载:
  2. 一个用循环链表模拟操作系统进程调度中的时间片轮转策略-A simulation of the operating system process the cyclic list scheduling time slice rotation strategy
  3. 所属分类:OS Develop

    • 发布日期:2017-05-10
    • 文件大小:2072715
    • 提供者:费腾
  1. 111

    0下载:
  2. 进程调度:编写一个允许多个进程共同运行的进程调度程序,其中进程调度算法采用两种调度算法:高优先权调度算法,时间片轮转调度算法。-Process Scheduling: the process of writing a joint operation to allow multiple process scheduler, process scheduling algorithm which uses two scheduling algorithms: the high priority sch
  3. 所属分类:OS Develop

    • 发布日期:2017-05-25
    • 文件大小:8370086
    • 提供者:星星索
  1. Process-Scheduling-Algorithm

    0下载:
  2. 模拟实现四种进程调度算法:先到先服务、抢占式调度、时间片轮转、多级反馈队列调度-Simulation of the process of realization of the four scheduling algorithms: first come first service, preemptive scheduling, time slice rotation, multi-level feedback queue scheduling
  3. 所属分类:Process-Thread

    • 发布日期:2017-03-28
    • 文件大小:183526
    • 提供者:Lambert
  1. Cpp1

    0下载:
  2. 单处理器系统的进程调度 实验要求: 2.1.设计一个按时间片轮转法实现处理器调度的程序,每个程序由一个PCB表示。 2.2.程序执行中应能在屏幕上显示出各进程的状态变化,以便于观察调度的整个过程 -
  3. 所属分类:SCM

    • 发布日期:2017-04-09
    • 文件大小:604
    • 提供者:GSrue
  1. chuliqidiaodu

    0下载:
  2. (1)设计一个有N个进程共行的进程调度程序。每个进程由一个进程控制块 PCB表示。进程控制块包括以下信息:进程名,进程优先数,进程需要运行的时间,占用CPU的时间以及进程的状态等。 (2)本调度程序用时间片轮转算法。 (3)编写程序并调试运行。 -(1) design a process, a total of N lines of the process scheduler. Each process consists of a process control bloc
  3. 所属分类:SCM

    • 发布日期:2017-04-09
    • 文件大小:195669
    • 提供者:罗理机
  1. jinchengdiaodu

    0下载:
  2. 进程调度,实现先来先服调度,时间片轮转调度-Process scheduling
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-13
    • 文件大小:2336
    • 提供者:汪强
  1. Process

    0下载:
  2. 任务1:进程调度 1 设计目的 (1)要求学生设计并实现模拟进程调度的算法:时间片轮转及先来先服务。 (2)理解进程控制块的结构。 (3)理解进程运行的并发性。 (4)掌握进程调度算法。 2 设计要求 在多道程序运行环境下,进程数目一般多于处理机数目,使得进程要通过竞争来使用处理机。这就要求系统能按某种算法,动态地把处理机分配给就绪队列中的一个进程,使之运行,分配处理机的任务是由进程调度程序完成的。一个进程被创建后,系统为了便于对进程进行管理,将系统中的所有进程按其状
  3. 所属分类:Applet

    • 发布日期:2017-03-24
    • 文件大小:4969
    • 提供者:heartBeat
  1. jinchengguanliyanshi

    0下载:
  2. 进程管理演示 模拟操作系统的调度算法 包括先来先服务算法、优先级算法及时间片轮转算法-Simulation process management presentation, including the operating system' s scheduling algorithm FCFS algorithm, priority and time slice rotation algorithm algorithm
  3. 所属分类:OS Develop

    • 发布日期:2017-04-06
    • 文件大小:1641
    • 提供者:jie
  1. jinchengdiaodu

    0下载:
  2. 一个 操作系统的 进程调度的 课程设计。 主要包括时间片轮转,优先级,先来先服务,一以及多级反馈四种调度方法。是用c语言写的。-activation time of operating system ,used C.
  3. 所属分类:OS Develop

    • 发布日期:2017-04-02
    • 文件大小:10945
    • 提供者:xb
  1. scheduling

    0下载:
  2. 编写一模拟程序,实现几种常见的进程调度算法,通过对几组进程分别使用不同的调度算法,计算进程的平均周转时间和平均带权周转时间,比较各种算法的优劣。 进程调度实现先来先服务算法、抢占式优先数调度算法、时间片轮转调度算法和多级队列反馈调度算法。-Write a simulation program, to achieve some common process scheduling algorithm, the process by several groups of different sch
  3. 所属分类:OS Develop

    • 发布日期:2017-05-14
    • 文件大小:3584403
    • 提供者:xysheep
  1. OS

    0下载:
  2. 用时间片轮转调度算法模拟操作系统进程管理,磁盘分配,设备管理,文件管理,开发环境Visual C++6.0-Rotation scheduling algorithm with a time slice simulation operating system process management, disk allocation, device management, document management, development environment, Visual C++6.0
  3. 所属分类:OS Develop

    • 发布日期:2017-05-14
    • 文件大小:3471443
    • 提供者:菅端
  1. process

    0下载:
  2. 操作系统中模拟进程调度的一个小程序,采用动态优先级和时间片轮转法,是我的课程小作业-Operating system to simulate the process of scheduling a small program, the use of dynamic priority and time slice Round-Robin, a small course of my work
  3. 所属分类:Process-Thread

    • 发布日期:2017-04-03
    • 文件大小:103397
    • 提供者:
« 1 2 3 4 5 6 7 89 10 11 12 13 14 »
搜珍网 www.dssz.com