Mercurial > hg > Members > kono > Cerium
view include/TaskManager/SpeNop.h @ 68:35a6cf176c38
*** empty log message ***
author | chiaki |
---|---|
date | Sun, 17 Feb 2008 21:45:07 +0900 |
parents | 6a77b5e755ab |
children |
line wrap: on
line source
#ifndef INCLUDED_SPE_NOP #define INCLUDED_SPE_NOP #ifndef INCLUDED_SPE_MANAGER # include "SpeManager.h" #endif #include "error.h" class SpeNop : public SpeTaskBase { public: /* functions */ SpeTaskBase* next(SpeManager *, SpeTaskBase *); #if DEBUG void read(void) { __debug("[SpeNop:%s]\n", __FUNCTION__); } void exec(void) { __debug("[SpeNop:%s]\n", __FUNCTION__); } void write(void) { __debug("[SpeNop:%s]\n", __FUNCTION__); } #endif }; #endif