虫虫首页|资源下载|资源专辑|精品软件
登录|注册

Robin

  • C++编程实例Round Robin Scheduling Task

    C++编程实例Round Robin Scheduling Task

    标签: Scheduling Round Robin Task

    上传时间: 2015-10-07

    上传用户:stella2015

  • 3个CPU调度算法的simulation. 分别是Short Job First,High Return Ration Next, Round Robin. 模拟得到R,U,S等重要指标。

    3个CPU调度算法的simulation. 分别是Short Job First,High Return Ration Next, Round Robin. 模拟得到R,U,S等重要指标。

    标签: simulation Return Ration Short

    上传时间: 2014-01-01

    上传用户:lhw888

  • Rice University的Robin C. Sickles professor开发的专门用于paneldata model test and estimation 的program

    Rice University的Robin C. Sickles professor开发的专门用于paneldata model test and estimation 的program

    标签: C. University estimation professor

    上传时间: 2016-12-24

    上传用户:1583060504

  • Round Robin scheduler and a gannt chat for arrival time,burst time turn around time

    Round Robin scheduler and a gannt chat for arrival time,burst time turn around time

    标签: time scheduler arrival around

    上传时间: 2017-03-12

    上传用户:569342831

  • round Robin demo program

    round Robin demo program

    标签: program round Robin demo

    上传时间: 2013-12-29

    上传用户:q123321

  • 素数Robin—Millor测试法的C语言源码

    素数Robin—Millor测试法的C语言源码

    标签: Millor Robin C语言 测试

    上传时间: 2013-12-22

    上传用户:dancnc

  • FREERTOS的官方移植文档

    FeaturesThe following standard features are provided.• Choice of RTOS scheduling policy1. Pre-emptive:Always runs the highest available task. Tasks of identical priorityshare CPU time (fully pre-emptive with round Robin time slicing).2. Cooperative:Context switches only occur if a task blocks, or explicitly callstaskYIELD().• Co-routines (light weight tasks that utilise very little RAM).• Message queues• Semaphores [via macros]• Trace visualisation ability (requires more RAM)• Majority of source code common to all supported development tools• Wide range of ports and examples

    标签: FREERTOS 移植 文档

    上传时间: 2013-10-13

    上传用户:13162218709

  • AT89C2051驱动步进电机的电路和源码

    AT89C2051驱动步进电机的电路和源码:AT89C2051驱动步进电机的电路和源码 程序:stepper.c stepper.hex/* * STEPPER.C * sweeping stepper's rotor cw and cww 400 steps * Copyright (c) 1999 by W.Sirichote */#i nclude c:\mc5151io.h /* include i/o header file */ #i nclude c:\mc5151reg.hregister unsigned char j,flag1,temp; register unsigned int cw_n,ccw_n;unsigned char step[8]={0x80,0xc0,0x40,0x60,0x20,0x30,0x10,0x90} #define n 400/* flag1 mask byte 0x01 run cw() 0x02 run ccw() */main(){ flag1=0; serinit(9600); disable(); /* no need timer interrupt */ cw_n = n; /* initial step number for cw */ flag1 |=0x01; /* initial enable cw() */while(1){ { tick_wait(); /* wait for 10ms elapsed */energize(); /* round-Robin execution the following tasks every 10ms */ cw(); ccw(); } }}cw(){ if((flag1&0x01)!=0) { cw_n--; /* decrement cw step number */ if (cw_n !=0) j++; /* if not zero increment index j */ else {flag1&=~0x01; /* disable cw() execution */ ccw_n = n; /* reload step number to ccw counter */ flag1 |=0x02; /* enable cww() execution */ } }

    标签: C2051 2051 89C AT

    上传时间: 2013-11-20

    上传用户:boyaboy

  • 本系统为在线相册系统

    本系统为在线相册系统,使用方法(这里假定Tomcat 安装在本机,且为缺省的配置): 1、在Tomcat的Webapps目录下建立一个目录,例如oa 。 2、将程序代码的build/web/目录下的全部文件复制 到Tomcat的webapps目录下oa目录。 3、启动Tomcat 4、在地址栏中输入http://localhost:8080/oa 缺省用户: Robin 管理员, 密码:111111 RL 用户, 密码:222222 用户可以自己注册用户或者修改data目录下的 users.xml文件。 注:来自izncu

    标签:

    上传时间: 2015-09-30

    上传用户:13188549192

  • Solutions are obtained for Poissson, diffusion, or wave PDEs homogeneous or nonhomogeneous equations

    Solutions are obtained for Poissson, diffusion, or wave PDEs homogeneous or nonhomogeneous equations and/or boundary conditions rectangular, cylindrical, or spherical coordinates time, Laplace, or frequency domains Dirichlet, Neumann, Robin, singular, periodic, or incoming/outgoing boundary conditions. Output is suitable for pasting into LaTeX documents.

    标签: nonhomogeneous homogeneous Solutions diffusion

    上传时间: 2015-10-30

    上传用户:JasonC