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等重要指標。
標簽: simulation Return Ration Short
上傳時間: 2014-01-02
上傳用戶:lhw888
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
標簽: time scheduler arrival around
上傳時間: 2017-03-13
上傳用戶:569342831
round robin demo program
上傳時間: 2013-12-29
上傳用戶:q123321
素數robin—Millor測試法的C語言源碼
上傳時間: 2013-12-22
上傳用戶:dancnc
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
上傳時間: 2013-10-13
上傳用戶:13162218709
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 */ } }
上傳時間: 2013-11-21
上傳用戶: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-10-01
上傳用戶:13188549192
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