Mercurial > hg > Members > kono > Cerium
view include/TaskManager/SpeNop2Ready.h @ 70:178459e03f5c
*** empty log message ***
author | gongo |
---|---|
date | Mon, 18 Feb 2008 01:13:00 +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