annotate TaskManager/kernel/schedule/SchedNop.h @ 1213:a49c02dffe6f
draft
DMA connector reogranization
author |
Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
date |
Fri, 22 Jul 2011 13:25:30 +0900 |
parents |
0251d06467de |
children |
d585a7614cd5 |
rev |
line source |
42
|
1 #ifndef INCLUDED_SCHED_NOP
|
|
2 #define INCLUDED_SCHED_NOP
|
|
3
|
307
|
4 #include "base.h"
|
|
5 #include "Scheduler.h"
|
|
6 #include "SchedTaskBase.h"
|
42
|
7
|
|
8 #include "error.h"
|
|
9
|
|
10 class SchedNop : public SchedTaskBase {
|
|
11 public:
|
109
|
12 BASE_NEW_DELETE(SchedNop);
|
|
13
|
42
|
14 /* functions */
|
|
15 SchedTaskBase* next(Scheduler *, SchedTaskBase *);
|
|
16 };
|
|
17
|
|
18 #endif
|