Mercurial > hg > Members > kono > Cerium
view include/TaskManager/SpeNop2Ready.h @ 47:8266445bdac2
*** empty log message ***
author | gongo |
---|---|
date | Fri, 15 Feb 2008 13:09:58 +0900 |
parents | 6a77b5e755ab |
children |
line wrap: on
line source
#ifndef INCLUDED_SPE_NOP2READY #define INCLUDED_SPE_NOP2READY #ifndef INCLUDED_SPE_MANAGER # include "SpeManager.h" #endif #ifndef INCLUDED_SPE_NOP # include "SpeNop.h" #endif #include "error.h" class SpeNop2Ready : public SpeNop { public: /* constructor */ SpeNop2Ready(DmaManager*); /* variables */ DmaManager* connector; /* functions */ void exec(void); SpeTaskBase* next(SpeManager *, SpeTaskBase *); #if DEBUG void read(void) { __debug("[SpeNop2Ready:%s]\n", __FUNCTION__); } void write(void) { __debug("[SpeNop2Ready:%s]\n", __FUNCTION__); } #endif }; #endif