CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 系统编程 搜索资源 - priority

搜索资源列表

  1. 200482712133053

    0下载:
  2. 进程调度算法:采用最高优先数优先的调度算法,即把处理机分配给优先数最高的进程。 每个进程由一个进程控制块(PCB)表示。进程控制块可以包含如下信息:进程名、优先数、需要运行的时间、已占用的CPU时间、进程状态等等。 进程的优先数及所需要运行的时间可以事先人为地指定(也可由随机数产生)。 进程的运行时间以时间片为单位进行计算。 每个进程的状态可以是就绪W(Wait),运行R(Run),或完成F(Finish)三种状态之一。 -process Scheduling Algorithm : The
  3. 所属分类:系统编程

    • 发布日期:2008-10-13
    • 文件大小:1415
    • 提供者:佟童
  1. 多极反馈优先

    0下载:
  2. 用JAVA编写的多极反馈优先的程序。实现操作功能-prepared using JAVA multi-polar feedback priority procedures. Achieving feature
  3. 所属分类:系统编程

    • 发布日期:2008-10-13
    • 文件大小:2587
    • 提供者:邱杰
  1. ucos 2.76

    0下载:
  2. 最新版ucos II 完整源码,非常好的一个实时操作系统,支持64个实时任务,优先级调度。-latest version TRACK II source code integrity, a very good real-time operating system to support 64 real-time task, priority scheduling.
  3. 所属分类:系统编程

    • 发布日期:2008-10-13
    • 文件大小:66344
    • 提供者:藏名
  1. 电子节拍器

    0下载:
  2. 捕捉拍频 * 捕捉拍频功能仅在拍子停止时可用。 * 以一定节奏连纽按动Tap按钮两下或更多,Tempo会自动对应于按动的拍频。 * 连续2秒没有按动Tap,或启动拍子,则上次按动的记录将被清除,并在下次按动时重新记算拍频。 * 拍频将以连续按下的拍子间隔,以一定算法进行统计,得出近似值。 调节音量 * 拖动Volume框中的滑条即可调节音量,向左拖动使音量减小,向右拖动反之。 * 最小音量为静音,最大音量为拍音的原音量。 运行模式 * 选择Rum
  3. 所属分类:系统编程

    • 发布日期:2008-10-13
    • 文件大小:36890
    • 提供者:王静
  1. JCHENG

    0下载:
  2. 设计有n个进程的程序,其中每个进程控制块PCB中包括: 进程名(ID),进程优先数(Priority),进程进入CPU的时间(Intime),程序需要运行的时间(Alltime) 将PCB块联接在一个单链表(数据结构)中,并在屏幕上显示其内容-n design process procedures, which each process control block PCB include : process (ID), the process priority (Priority), the p
  3. 所属分类:系统编程

    • 发布日期:2008-10-13
    • 文件大小:1995
    • 提供者:姚紫欣
  1. JCHENG2

    0下载:
  2. 设计一个程序模拟进程管理的过程,采用时间片轮转法,进程占用CPU的时间片有每个进程的优先数来确定。(约定:每个优先数对应10分钟)-design a simulation process management process using time-Web, the process of CPU time for each and every piece of the process to determine the priority number. (Agreement : each corre
  3. 所属分类:系统编程

    • 发布日期:2008-10-13
    • 文件大小:1882
    • 提供者:姚紫欣
  1. 操作系统——动态优先级调度算法源代码

    1下载:
  2. 操作系统——动态优先级调度算法源代码,多道系统中多进程并发执行,为了提高系统性能解决进程死锁问题,进程的优先级是动态变化的。正在执行的进程优先级会随时间降低,而挂起的进程或等待的进程的优先级会逐渐升高,这样就解决了操作系统中一个地优先级程序长期占据cpu,而高优先级进程却迟迟不能得到处理。-operating system -- Dynamic priority scheduling algorithm source code, multi-channel system more complic
  3. 所属分类:系统编程

    • 发布日期:2008-10-13
    • 文件大小:9705
    • 提供者:韩文杰
  1. 71_write_first

    0下载:
  2. os原理学习的时候,我写的读者优先程序,用vc写的.-os learning theory, I wrote readers priority procedures, using vc writes.
  3. 所属分类:系统编程

    • 发布日期:2008-10-13
    • 文件大小:2518
    • 提供者:赵燕
  1. Multi_Threaded_Job_Queue_demo

    0下载:
  2. 以队列的方式对多线程进行管理,并可动态设定活动线程的数据,可支持任务的优先级处理-cohort to the right multi-threaded for management and the dynamic activities of threads set of data, to support the priority tasks handled
  3. 所属分类:系统编程

    • 发布日期:2008-10-13
    • 文件大小:28747
    • 提供者:杜渔
  1. Process_Schedule

    0下载:
  2. 应用和优先数法和轮转法实现对进程的控制,附注释和报告-application and priority numbers and Web Method in the process control, and annotated report
  3. 所属分类:系统编程

    • 发布日期:2008-10-13
    • 文件大小:41749
    • 提供者:xiaoyu
  1. BSP-DEV

    1下载:
  2. 画家算法, 又称深度排序法。 1)将屏幕设成背景色,(2)把要画的物体(多边形)按其离开视点的从远到近排序。由此构成深度优先级表。然后从远到近画物体(多边形),近的就因为优先级高而覆盖远的多边形。由此可消隐。 -painter algorithm, the painter algorithm, known as the depth of sorting. 1) Screen into the background color, (2) to paint objects (Polygo
  3. 所属分类:系统编程

    • 发布日期:2008-10-13
    • 文件大小:135751
    • 提供者:zidan
  1. ReadWriteSolution

    0下载:
  2. 操作系统读写问题的源码实现 这是读者优先的程序-operating system read and write the source code readers realize this is the priority procedures
  3. 所属分类:系统编程

    • 发布日期:2008-10-13
    • 文件大小:3831
    • 提供者:Bob
  1. _PriorityQueue

    0下载:
  2. 优先队列类及实现,测试程序,以Key为权,Key少者先出队-priority queue category and Implementation, testing procedures, for the right to Key, Key less first-out team
  3. 所属分类:系统编程

    • 发布日期:2008-10-13
    • 文件大小:6014
    • 提供者:David
  1. process_manage

    0下载:
  2. 显示系统进程信息,包括进程名称,路径,优先级,线程数等-process information display system, including the process name, path, priority, thread and so on
  3. 所属分类:系统编程

    • 发布日期:2008-10-13
    • 文件大小:1119324
    • 提供者:杨建
  1. pintos-priority

    0下载:
  2. pintos 全部原码 希望能有所帮助-pintos all code
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-03-24
    • 文件大小:810897
    • 提供者:Jason_walkingon
  1. priority

    0下载:
  2. Priority Scheduling algorithm Shell program
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-12-08
    • 文件大小:634
    • 提供者:mreddy
  1. priority-preempt

    0下载:
  2. Priority Scheduling Algorithm-Preemptive
  3. 所属分类:Windows Kernel

    • 发布日期:2017-04-04
    • 文件大小:716
    • 提供者:rushi
  1. pintos-priority

    0下载:
  2. pintos project1的实现,这是斯坦福大学推出的一个操作系统,要我们自己实现其功能-pintos project1 implementation, it is Stanford University launched an operating system, if we are to realize its function
  3. 所属分类:Linux-Unix program

    • 发布日期:2016-01-24
    • 文件大小:458752
    • 提供者:Cindy
  1. Process-priority-scheduling

    0下载:
  2. 优先数调度算法常用于批处理系统中。在进程调度中,每次调度时,系统把处理机分配给就绪队列中优先数最高的进程。-A number of priority scheduling algorithm commonly used in a batch system. In the process of scheduling, every scheduling, the ready queue system allocated to the processor the highest priority in
  3. 所属分类:Windows Kernel

    • 发布日期:2017-03-28
    • 文件大小:1276
    • 提供者:苡莣
  1. Priority

    0下载:
  2. the Priority header Source Code for Linux.
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-04-13
    • 文件大小:3469
    • 提供者:zingnihun
« 12 3 4 5 6 7 8 9 10 »
搜珍网 www.dssz.com