Mercurial > hg > Game > Cerium
comparison TaskManager/kernel/schedule/SchedNop.cc @ 42:aa11038dbdc1
*** empty log message ***
author | gongo |
---|---|
date | Thu, 14 Feb 2008 18:27:37 +0900 |
parents | |
children | 028ffc9c0375 |
comparison
equal
deleted
inserted
replaced
41:68fb5bfee6b7 | 42:aa11038dbdc1 |
---|---|
1 #include <stdio.h> | |
2 #include "SchedNop.h" | |
3 #include "SchedMail.h" | |
4 #include "error.h" | |
5 | |
6 SchedTaskBase* | |
7 SchedNop::next(Scheduler *m, SchedTaskBase *p) | |
8 { | |
9 __debug("SchedNop::next()"); | |
10 | |
11 delete p; | |
12 | |
13 return new SchedMail(m->connector); | |
14 } |