Mercurial > hg > Game > Cerium
annotate include/TaskManager/SchedExit.h @ 255:45e849a81763 draft
show dma wait
author | tkaito@localhost.localdomain |
---|---|
date | Wed, 03 Jun 2009 15:46:07 +0900 |
parents | 028ffc9c0375 |
children | ec6729fab209 |
rev | line source |
---|---|
42 | 1 #ifndef INCLUDED_SCHED_EXIT |
2 #define INCLUDED_SCHED_EXIT | |
3 | |
109 | 4 #ifndef INCLUDED_BASE_H_ |
5 # include "base.h" | |
6 #endif | |
7 | |
42 | 8 #ifndef INCLUDED_SCHEDULER |
9 # include "Scheduler.h" | |
10 #endif | |
11 | |
12 #ifndef INCLUDED_SCHED_TASK_BASE | |
13 # include "SchedTaskBase.h" | |
14 #endif | |
15 | |
16 class SchedExit : public SchedTaskBase { | |
17 public: | |
109 | 18 BASE_NEW_DELETE(SchedExit); |
255 | 19 |
42 | 20 SchedTaskBase* next(Scheduler *, SchedTaskBase *); |
21 }; | |
22 | |
23 #endif |