Mercurial > hg > Game > Cerium
view include/TaskManager/SchedNop.h @ 62:b03e4cb64302
*** empty log message ***
author | gongo |
---|---|
date | Sat, 16 Feb 2008 21:42:17 +0900 |
parents | aa11038dbdc1 |
children | 028ffc9c0375 |
line wrap: on
line source
#ifndef INCLUDED_SCHED_NOP #define INCLUDED_SCHED_NOP #ifndef INCLUDED_SCHEDULER # include "Scheduler.h" #endif #ifndef INCLUDED_SCHED_TASK_BASE # include "SchedTaskBase.h" #endif #include "error.h" class SchedNop : public SchedTaskBase { public: /* functions */ SchedTaskBase* next(Scheduler *, SchedTaskBase *); #if DEBUG void read(void) { __debug("[SchedNop:%s]\n", __FUNCTION__); } void exec(void) { __debug("[SchedNop:%s]\n", __FUNCTION__); } void write(void) { __debug("[SchedNop:%s]\n", __FUNCTION__); } #endif }; #endif