Mercurial > hg > Members > kono > Cerium
view TaskManager/Cell/SchedNop2Ready.h @ 636:d433fc37587d
Cell Simple Task compiled. but not worked.
author | Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
---|---|
date | Wed, 18 Nov 2009 19:09:40 +0900 |
parents | 09f33c51a204 |
children |
line wrap: on
line source
#ifndef INCLUDED_SCHED_NOP2READY #define INCLUDED_SCHED_NOP2READY #include "base.h" #include "Scheduler.h" #include "SchedTaskBase.h" #include "SchedNop.h" #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