Mercurial > hg > Game > Cerium
annotate TaskManager/kernel/schedule/SchedExit.h @ 403:e2f29e912d0b draft
clean up and add more info on task_list
author | Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
---|---|
date | Wed, 23 Sep 2009 12:04:29 +0900 |
parents | 0251d06467de |
children | d585a7614cd5 |
rev | line source |
---|---|
42 | 1 #ifndef INCLUDED_SCHED_EXIT |
2 #define INCLUDED_SCHED_EXIT | |
3 | |
301
7f991471d43f
remove deprecated source. not work.
tkaito@localhost.localdomain
parents:
275
diff
changeset
|
4 #include "base.h" |
7f991471d43f
remove deprecated source. not work.
tkaito@localhost.localdomain
parents:
275
diff
changeset
|
5 #include "Scheduler.h" |
7f991471d43f
remove deprecated source. not work.
tkaito@localhost.localdomain
parents:
275
diff
changeset
|
6 #include "SchedTaskBase.h" |
109 | 7 |
42 | 8 |
9 class SchedExit : public SchedTaskBase { | |
10 public: | |
109 | 11 BASE_NEW_DELETE(SchedExit); |
403
e2f29e912d0b
clean up and add more info on task_list
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
366
diff
changeset
|
12 /* functions */ |
e2f29e912d0b
clean up and add more info on task_list
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
366
diff
changeset
|
13 SchedTaskBase* next(Scheduler *, SchedTaskBase *); |
255 | 14 |
42 | 15 }; |
16 | |
17 #endif |