⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 contextswitch.java

📁 Java Op Processor java vhdl processor
💻 JAVA
字号:
package vm04;import joprt.RtThread;import util.Dbg;import com.jopdesign.sys.Const;import com.jopdesign.sys.Native;public class ContextSwitch {	public final static int CNT = 500;	static int[] result;	static int ts;	static int t_diff;	public static void main(String[] args) {		Dbg.initSerWait();				// use serial line for debug output		result = new int[CNT];		// low priority thread		RtThread lprt = new RtThread(5, 100000) {			public void run() {				for (;;) {					ts = Native.rd(Const.IO_CNT);				}			}		};		RtThread rt = new RtThread(10, 5000) {			public void run() {				int i;				// give lprt a chance to start				waitForNextPeriod();				for (i=0; i<CNT; ++i) {					waitForNextPeriod();					result[i] = Native.rd(Const.IO_CNT)-ts;				}							result();			}			void result() {				int max = 0;				int min = 999999999;				int i;				for (i=0; i<CNT; ++i) {					int val = result[i]-t_diff;					if (val<min) min = val;					if (val>max) max = val;					Dbg.intVal(val);					Dbg.wr('\n');				}				Dbg.intVal(min);				Dbg.intVal(max);				Dbg.wr('\n');				for (;;) waitForNextPeriod();			}		};		// measure time for measurement		ts = Native.rd(Const.IO_CNT);		ts = Native.rd(Const.IO_CNT)-ts;		t_diff = ts;		RtThread.startMission();		for (;;) {			;			// busy do nothing		}	}}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -