Mercurial > hg > Members > kono > Cerium
annotate TaskManager/kernel/sys_task/Finish.h @ 463:bc5b3d327083
remove run()
author | Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
---|---|
date | Tue, 29 Sep 2009 15:45:11 +0900 |
parents | 5c194c71eca8 |
children | 01b321c86747 |
rev | line source |
---|---|
109 | 1 #ifndef INCLUDED_SYSTASK_FINISH |
2 #define INCLUDED_SYSTASK_FINISH | |
3 | |
4 #ifndef INCLUDED_SCHED_TASK | |
5 # include "SchedTask.h" | |
6 #endif | |
7 | |
8 class Finish : public SchedTask { | |
9 public: | |
10 SchedConstructor(Finish); | |
11 | |
463 | 12 int run(SchedTask *,void *r, void *w); |
109 | 13 }; |
14 | |
15 #endif |