Mercurial > hg > Members > kono > Cerium
annotate TaskManager/kernel/schedule/SchedNop.cc @ 507:735f76483bb2
Reorganization..
author | Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
---|---|
date | Mon, 12 Oct 2009 09:39:35 +0900 |
parents | 8611780d479f |
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 } |