Mercurial > hg > Game > Cerium
view include/TaskManager/SchedMail.h @ 107:ce5755f544c1 cvs
Initial revision
author | chiaki |
---|---|
date | Tue, 04 Mar 2008 18:06:44 +0900 |
parents | aa11038dbdc1 |
children | 028ffc9c0375 |
line wrap: on
line source
#ifndef INCLUDED_SCHED_MAIL #define INCLUDED_SCHED_MAIL #ifndef INCLUDED_SCHEDULER # include "Scheduler.h" #endif #ifndef INCLUDED_SCHED_TASK_BASE # include "SchedTaskBase.h" #endif #include "error.h" class SchedMail : public SchedTaskBase{ public: /* constructor */ SchedMail(DmaManager *); /* variables */ unsigned int params_addr; DmaManager* connector; /* functions */ void read(void); SchedTaskBase* next(Scheduler *, SchedTaskBase *); #if DEBUG void exec(void) { __debug("[SchedMail:%s]\n", __FUNCTION__); } void write(void) { __debug("[SchedMail:%s]\n", __FUNCTION__); } #endif }; #endif