695
|
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(SchedTaskBase *savedTask_);
|
|
12 virtual ~SchedTaskArrayLoad();
|
|
13
|
|
14 BASE_NEW_DELETE(SchedTaskArrayLoad);
|
|
15
|
|
16 SchedTaskBase *savedTask;
|
|
17
|
|
18 private:
|
|
19 /* variables */
|
|
20
|
697
|
21 void *readbuf;
|
|
22
|
695
|
23 /* functions */
|
|
24
|
|
25 // override
|
|
26 void read();
|
|
27 void exec();
|
|
28 void write();
|
|
29 SchedTaskBase* next(Scheduler *, SchedTaskBase *);
|
|
30
|
|
31
|
|
32 };
|
|
33
|
|
34
|
|
35 #endif
|
|
36
|