Mercurial > hg > Game > Cerium
annotate TaskManager/kernel/schedule/SchedExit.cc @ 403:e2f29e912d0b draft
clean up and add more info on task_list
author | Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
---|---|
date | Wed, 23 Sep 2009 12:04:29 +0900 |
parents | aa11038dbdc1 |
children | 3bc98f6d31ff |
rev | line source |
---|---|
42 | 1 #include <stdio.h> |
2 #include "SchedExit.h" | |
3 #include "error.h" | |
4 | |
5 SchedTaskBase* | |
403
e2f29e912d0b
clean up and add more info on task_list
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
42
diff
changeset
|
6 SchedExit::next(Scheduler *scheduler, SchedTaskBase *p) |
42 | 7 { |
8 delete p; | |
9 | |
10 __debug("SchedExit::next()\n"); | |
11 | |
12 return NULL; | |
13 } |