Mercurial > hg > Members > kono > Cerium
view TaskManager/Cell/SchedNop2Ready.h @ 552:a307e33178e7
add Application/send_linda.cc
author | aaa |
---|---|
date | Thu, 22 Oct 2009 19:34:38 +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