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

📄 op_other.hc

📁 专业汽车级嵌入式操作系统OSEK的源代码
💻 HC
字号:
/** * This is included inside a switch statement. */case OP_ATHROW:  tempStackWord = pop_ref();  if (tempStackWord == JNULL)  {    throw_exception (nullPointerException);    goto LABEL_ENGINELOOP;  }  throw_exception (word2obj (tempStackWord));  goto LABEL_ENGINELOOP;case OP_MONITORENTER:  enter_monitor (currentThread, word2obj(pop_ref()));  goto LABEL_ENGINELOOP;case OP_MONITOREXIT:  exit_monitor (currentThread, word2obj(pop_ref()));  goto LABEL_ENGINELOOP;// Notes:// - Not supported: BREAKPOINT/*end*/

⌨️ 快捷键说明

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