Mercurial > hg > Game > Cerium
annotate TaskManager/kernel/schedule/SchedExit.h @ 1546:61164c687b29 draft
fix GpuScheduler flip
author | Yuhi TOMARI <yuhi@cr.ie.u-ryukyu.ac.jp> |
---|---|
date | Tue, 05 Feb 2013 13:15:46 +0900 |
parents | d585a7614cd5 |
children |
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 *); |
1467
d585a7614cd5
look like working now.
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
403
diff
changeset
|
14 const char * name() { return "Exit" ; }; |
255 | 15 |
42 | 16 }; |
17 | |
18 #endif |