comparison include/TaskManager/SchedTaskArrayLoad.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_TASK_ARRAY_LOAD
2 #define INCLUDED_SCHED_TASK_ARRAY_LOAD
3
4 #include "base.h"
5 #include "Scheduler.h"
6 #include "SchedTask.h"
7
8 class SchedTaskArrayLoad : public SchedTask {
9 public:
10 /* constructor */
11 SchedTaskArrayLoad(Scheduler *s, SchedTaskBase *savedTask_, int dma_tag_switch);
12 virtual ~SchedTaskArrayLoad();
13
14 BASE_NEW_DELETE(SchedTaskArrayLoad);
15
16 private:
17 /* variables */
18
19 /* functions */
20
21 // override
22 void read();
23 void exec();
24 void write();
25 SchedTaskBase* next(Scheduler *, SchedTaskBase *);
26
27
28 } ;
29
30
31 #endif
32