annotate include/TaskManager/SchedNop.h @ 354:81b25e5d5379
add example/get_segment and change spe/DrawSpan.cpp
author |
koba |
date |
Wed, 15 Jul 2009 17:39:51 +0900 |
parents |
5c194c71eca8 |
children |
|
rev |
line source |
42
|
1 #ifndef INCLUDED_SCHED_NOP
|
|
2 #define INCLUDED_SCHED_NOP
|
|
3
|
354
|
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
|