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

📄 iointeruptionevent.java

📁 对于CPU线程调度的模拟
💻 JAVA
字号:
package simcpu;

public class IoInteruptionEvent extends Event {

	SimThread thread;
	public IoInteruptionEvent(int time, EventDriver driver, SimSystem sys, SimThread thread) {
		super(time,driver,sys);
		this.thread=thread;
	}

	@Override
	public void handel() {
		thread.ioFinish();
		if(!sys.isCpuBusy()) {
//			sys.setRunningThread(thread);
//			thread.setState(State.RUNNING);
//			driver.predict(thread.createNextEvent(driver, sys));
//			sys.setCpuBusy(true);
			sys.load(thread);
			return;
		}
		thread.setState(State.READY);
		sys.readyQueue.add(thread);
	}

}

⌨️ 快捷键说明

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