comparison TaskManager/kernel/schedule/SchedTaskList.h @ 0:04e28d8d3c6f

first commit
author Daiki KINJYO <e085722@ie.u-ryukyu.ac.jp>
date Mon, 08 Nov 2010 01:23:25 +0900
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:04e28d8d3c6f
1 #ifndef INCLUDED_SCHED_TASKLIST
2 #define INCLUDED_SCHED_TASKLIST
3
4 #include "base.h"
5 #include "Scheduler.h"
6 #include "SchedTask.h"
7 #include "TaskList.h"
8
9 #include "error.h"
10
11 class SchedTaskList : public SchedTask {
12 public:
13 /* constructor */
14 SchedTaskList(memaddr addr, Scheduler *sched, int tag);
15
16 BASE_NEW_DELETE(SchedTaskList);
17
18 /* override functions */
19 void read();
20 void exec();
21 void write();
22
23
24 };
25
26
27 #endif
28