Mercurial > hg > Members > kono > Cerium
annotate TaskManager/kernel/schedule/SchedNop.cc @ 838:41302b72c895
Draw Span Task -> Task Array
author | Yutaka_Kinjyo |
---|---|
date | Fri, 28 May 2010 01:47:42 +0900 |
parents | 735f76483bb2 |
children |
rev | line source |
---|---|
42 | 1 #include <stdio.h> |
2 #include "SchedNop.h" | |
3 #include "SchedMail.h" | |
4 #include "error.h" | |
5 | |
6 SchedTaskBase* | |
403
8611780d479f
clean up and add more info on task_list
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
109
diff
changeset
|
7 SchedNop::next(Scheduler *scheduler, SchedTaskBase *p) |
42 | 8 { |
9 __debug("SchedNop::next()"); | |
10 | |
507 | 11 // delete p; |
42 | 12 |
403
8611780d479f
clean up and add more info on task_list
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
109
diff
changeset
|
13 return new SchedMail(); |
42 | 14 } |