CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 Windows编程 进程与线程 搜索资源 - Scheduling System

搜索资源列表

  1. operation_out

    0下载:
  2. 对《分布式操作系统》书中外“科手术调度系统”的java实现,重点在于临界区的概念的实践-right "distributed systems" foreign books "surgery scheduling system" to achieve the java, with a focus on the critical areas of the concept of practice
  3. 所属分类:进程与线程

    • 发布日期:2008-10-13
    • 文件大小:98101
    • 提供者:曼舞
  1. conan

    0下载:
  2. 操作系统实验课程中模拟虚拟存储器的算法 使用先进先出调度算法实现-experimental courses operating system virtual memory simulation algorithm using FIFO scheduling algorithm
  3. 所属分类:进程与线程

    • 发布日期:2008-10-13
    • 文件大小:1788
    • 提供者:Jessica
  1. 进程管理与调度的模拟

    0下载:
  2. 在进程管理与调度模拟系统中,共涉及到两个类和一个结构体:PCB结构体、链队列类和OS类。操作系统启动后,在系统内将存在PCB池,用来存放进程的PCB结构,PCB池的大小决定了系统中能同时存在的进程数量。在本系统中,假定系统能同时存在的进程数为20个,用一个PCB的数组来表示。PCB池中的PCB会有四种状态:运行状态、就绪状态、阻塞状态和空闲状态,所以,在操作系统中将会有四种队列:运行队列、就绪对列、阻塞队列和空闲队列。进程的创建随着操作系统的调度,将会在这四种队列中变迁。-in process
  3. 所属分类:进程与线程

    • 发布日期:2008-10-13
    • 文件大小:10565
    • 提供者:张涛
  1. 作业调度算法实现

    0下载:
  2. 这是一个关于作业调度和进程调度的算法实现,操作系统的试验程序!-This is one of the job scheduling and process scheduling algorithm, the operating system of testing procedures!
  3. 所属分类:进程与线程

    • 发布日期:2008-10-13
    • 文件大小:3199
    • 提供者:杨新
  1. 片段

    0下载:
  2. 进统过本次对处理机调度实验提高了程序设计的方法和技巧,提高了编制清晰、合理、可读性好的系统程序的能力,加深对操作系统课程的理解。对处理机调度有了更加深刻的理解。通过对处理机调度的实验操作而加强了对进程管理知识的巩。生更好地掌握操作系统的基本概念、基本原理、及基本功能,具有分析实际操作系统、设计、构造和开发现代操作系统的基本能力程管理和调度-into the EC over the right processor scheduling experiment to improve the progr
  3. 所属分类:进程与线程

    • 发布日期:2008-10-13
    • 文件大小:10253
    • 提供者:佳音
  1. 响应比高者优先算法

    0下载:
  2. 操作系统中的 响应比高者优先调度算法 计算响应时间,周转时间-operating system, the response is high priority scheduling algorithm for calculating response time, the turnaround time
  3. 所属分类:进程与线程

    • 发布日期:2008-10-13
    • 文件大小:12547
    • 提供者:dd
  1. os--processcontrol

    0下载:
  2. 这是一个模拟操作系统中近程之间调度的源代码,适合初学操作系统的人理解其内部工作机制.-this is a short-range operating system simulation scheduling between the source code, the operating system suitable for beginners to understand its internal working mechanisms.
  3. 所属分类:进程与线程

    • 发布日期:2008-10-13
    • 文件大小:12803
    • 提供者:润卿
  1. memery

    0下载:
  2. 操作系统中内存分配调度,用c编写的代码,可能有不完善之处,望各位能指出并改正-operating system memory allocation scheduling, c prepared with the code may be flawed, the hope that you can correct and
  3. 所属分类:进程与线程

    • 发布日期:2008-10-13
    • 文件大小:2096
    • 提供者:小蒋
  1. osdd

    0下载:
  2. 在多道程序和多任务系统中,系统内同时处于就绪状态的进程可能有若干个。也就是说能运行的进程数大于处理机个数。为了使系统中的进程能有条不紊地工作,必须选用某种调度策略,选择一进程占用处理机。设计了一个模拟处理机调动算法-in multi-channel and multi-task procedure system, the system in place at the same time within the state of the process may have several. That
  3. 所属分类:进程与线程

    • 发布日期:2008-10-13
    • 文件大小:1917
    • 提供者:ll
  1. schedule1

    0下载:
  2. 演示系统进行线程调度的源代码,清晰直观 ,对PCB有很好的理解-demo thread scheduling system source code, clear visual of PCB have a good understanding
  3. 所属分类:进程与线程

    • 发布日期:2008-10-13
    • 文件大小:177816
    • 提供者:邵革健
  1. multitreadsrc4

    0下载:
  2. 线程的同步   虽然多线程能给我们带来好处,但是也有不少问题需要解决。例如,对于像磁盘驱动器这样独占性系统资源,由于线程可以执行进程的任何代码段,且线程的运行是由系统调度自动完成的,具有一定的不确定性,因此就有可能出现两个线程同时对磁盘驱动器进行操作,从而出现操作错误;又例如,对于银行系统的计算机来说,可能使用一个线程来更新其用户数据库,而用另外一个线程来读取数据库以响应储户的需要,极有可能读数据库的线程读取的是未完全更新的数据库,因为可能在读的时候只有一部分数据被更新过。-thread s
  3. 所属分类:进程与线程

    • 发布日期:2008-10-13
    • 文件大小:22787
    • 提供者:苏艳芳
  1. two-level-scheduling-

    1下载:
  2. 用C语言模拟实现一个的多道批处理系统的两级调度-C language simulation implement a multi-channel batch system of the two levels of scheduling
  3. 所属分类:Process-Thread

    • 发布日期:2017-04-09
    • 文件大小:1209913
    • 提供者:longer
  1. jinchengdiaodu

    0下载:
  2. 进程调度系统的一个课程设计源码,运用了两种调度算法。-Process scheduling system as a source of course design, using two kinds of scheduling algorithms.
  3. 所属分类:Process-Thread

    • 发布日期:2017-04-16
    • 文件大小:9334
    • 提供者:fengzi
  1. OS_mange

    0下载:
  2. 模拟作业调度(时间片轮转法)和进程调度(时间片轮转 法)模拟作业调度系统。 -Simulation of job scheduling (time slice Round-Robin) and process scheduling (time slice Round-Robin) scheduling system simulation.
  3. 所属分类:Process-Thread

    • 发布日期:2017-03-30
    • 文件大小:45537
    • 提供者:
  1. Job-scheduling

    0下载:
  2. 在多通道批处理系统中,作业的运行除了考虑作业之间的优先关系之外,还必须考虑系统能否为其所需的资源分配资源。因为在多通道批处理系统中同时有不只一道作业在CPU中运行,这样就会导致某个作业需要的资源正在被另一个作业占用,这样就会导致无法分配资源的作业进入等待状态,直到该资源被其它作业释放后才能重新激活。-Batch processing in multi-channel system, jobs run in addition to considering the precedence relati
  3. 所属分类:Process-Thread

    • 发布日期:2017-03-29
    • 文件大小:142564
    • 提供者:xiaoxiao
  1. Process-scheduling

    0下载:
  2. 此程序完成操作系统中进程调度的问题。在C++环境下实现。-This process is completed the operating system process scheduling problems. In C++ environment to achieve.
  3. 所属分类:Process-Thread

    • 发布日期:2017-03-28
    • 文件大小:1715
    • 提供者:lansejingling
  1. scheduling

    3下载:
  2. 多道批处理系统两级调度的模拟,实现一个的多道批处理系统的两级调度。通过具体的作业调度、进程调度、内存分配等功能的实现,加深对多道批处理系统的两级调度模型和实现过程的理解。 -Many way batch system simulation of two level scheduling, realize a multi-channel batch system of the two levels of scheduling. Through the specific job scheduling
  3. 所属分类:Process-Thread

    • 发布日期:2016-12-27
    • 文件大小:1368064
    • 提供者:longer
  1. Single-processor-scheduling-process

    0下载:
  2. 这个C程序用来模拟操作系统中的单处理器进程调度。用户可以输入时间片,要创建的进程等。-This C program used to simulate a single processor operating system process scheduling. Users can enter a time slice, the process to be created and so on.
  3. 所属分类:Process-Thread

    • 发布日期:2017-04-08
    • 文件大小:224109
    • 提供者:点点
  1. Operating-System-B-test-reports

    0下载:
  2. 开发一个仿真操作系统,要求具备进程调度、存储器管理、文件及设备管理等基本功能-The development of a simulation operating system, requires scheduling process, the basic functions of memory management, file and device management
  3. 所属分类:Process-Thread

    • 发布日期:2017-04-24
    • 文件大小:227504
    • 提供者:杨开达
  1. operating-system-test-2

    0下载:
  2. 重庆大学软件学院操作系统实验二,线程及其调度,实现并行排序,并用图形界面表示-operating system test 2,thread scheduling and realize the parallel sorting showing as a graphical interface
  3. 所属分类:Process-Thread

    • 发布日期:2017-05-07
    • 文件大小:1409480
    • 提供者:德米安
« 12 3 4 5 »
搜珍网 www.dssz.com