Mercurial > hg > Game > Cerium
view include/TaskManager/SchedNop2Ready.h @ 292:2369f477ffbe draft
Document/Cerium_2009.mm
author | aaa |
---|---|
date | Fri, 05 Jun 2009 18:53:42 +0900 |
parents | 028ffc9c0375 |
children | 3fc86ddf5d1c |
line wrap: on
line source
#ifndef INCLUDED_SCHED_NOP2READY #define INCLUDED_SCHED_NOP2READY #ifndef INCLUDED_BASE_H_ # include "base.h" #endif #ifndef INCLUDED_SCHEDULER # include "Scheduler.h" #endif #ifndef INCLUDED_SCHED_TASK_BASE # include "SchedTaskBase.h" #endif #ifndef INCLUDED_SCHED_NOP # include "SchedNop.h" #endif #include "error.h" class SchedNop2Ready : public SchedNop { public: /* constructor */ SchedNop2Ready(Scheduler*); BASE_NEW_DELETE(SchedNop2Ready); /* variables */ Scheduler* scheduler; /* functions */ void exec(void); SchedTaskBase* next(Scheduler *, SchedTaskBase *); #if DEBUG void read(void) { __debug("[SchedNop2Ready:%s]\n", __FUNCTION__); } void write(void) { __debug("[SchedNop2Ready:%s]\n", __FUNCTION__); } #endif }; #endif