entrant.h.svn-base
来自「德国Erlangen大学教学操作系统源码。」· SVN-BASE 代码 · 共 28 行
SVN-BASE
28 行
/*****************************************************************************//* Betriebssysteme *//*---------------------------------------------------------------------------*//* *//* E N T R A N T *//* *//*---------------------------------------------------------------------------*//* Eine Koroutine, die vom Scheduler verwaltet wird. *//*****************************************************************************/#ifndef __entrant_include__#define __entrant_include__#include "thread/coroutine.h"#include "object/chain.h" class Entrant : public Coroutine, public Chain{public: Entrant() {} Entrant(void* tos) : Coroutine(tos) {} virtual ~Entrant() {}};#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?