Mercurial > hg > Game > Cerium
annotate TaskManager/kernel/schedule/SchedTaskList.h @ 2069:26aa08c9a1de draft default tip
cuda example fix
author | Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
---|---|
date | Sun, 12 Feb 2017 10:04:55 +0900 |
parents | d585a7614cd5 |
children |
rev | line source |
---|---|
42 | 1 #ifndef INCLUDED_SCHED_TASKLIST |
2 #define INCLUDED_SCHED_TASKLIST | |
3 | |
307 | 4 #include "base.h" |
5 #include "Scheduler.h" | |
708 | 6 #include "SchedTask.h" |
717
dfb3518d8694
TaskList load timing...
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
708
diff
changeset
|
7 #include "TaskList.h" |
42 | 8 |
9 #include "error.h" | |
10 | |
708 | 11 class SchedTaskList : public SchedTask { |
42 | 12 public: |
13 /* constructor */ | |
972 | 14 SchedTaskList(memaddr addr, Scheduler *sched, int tag); |
109 | 15 |
16 BASE_NEW_DELETE(SchedTaskList); | |
42 | 17 |
18 /* override functions */ | |
708 | 19 void read(); |
20 void exec(); | |
21 void write(); | |
1467
d585a7614cd5
look like working now.
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
972
diff
changeset
|
22 const char * name() { return "TaskList" ; }; |
d585a7614cd5
look like working now.
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
972
diff
changeset
|
23 |
42 | 24 |
25 | |
26 }; | |
27 | |
302 | 28 |
42 | 29 #endif |
184 | 30 |