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

📄 periodicthread.java

📁 Java Op Processor java vhdl processor
💻 JAVA
字号:
package ravenscar;import joprt.*;// import javax.realtime.*;// public class PeriodicThread extends NoHeapRealtimeThreadpublic class PeriodicThread extends RtThread {	// constructors	public PeriodicThread(PriorityParameters pp, PeriodicParameters p,											 java.lang.Runnable logic) 	{		// super(pp, p, ImmortalMemory.instance());		super(pp.getPriority(),			p.getPeriod().getUs(),			p.getEpoch().getUs());		applicationLogic = logic;	}	private java.lang.Runnable applicationLogic;		// methods	public void run() {		boolean noProblems = true;		while(noProblems) {		 // System.out.println("periodic thread looping");		 // System.out.println("noProblem is " + noProblems);			applicationLogic.run();			noProblems = waitForNextPeriod();		}		System.out.println("Deadline missed!!");		for (;;) waitForNextPeriod();		// System.out.println("Deadline is missed!!!");		// A deadline has been missed, or a cost		// overrun has occured and there are no handlers.		// If Ravenscar-RTSJ allows recovery, it would be called here	}	/*	public static RealtimeThread currentPeriodicRealtimeThread()	{ return RealtimeThread.currentRealtimeThread();};		public MemoryArea getMemoryArea()	{ return super.getMemoryArea();};	*/		public void start() {		// nothing to do in joprt		// super.start();	}}

⌨️ 快捷键说明

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