Mercurial > hg > Game > Cerium
annotate TaskManager/kernel/schedule/SchedExit.cc @ 468:796f72cb21d9 draft
test_nogl on Mac OS X worked.
author | Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
---|---|
date | Fri, 02 Oct 2009 16:40:43 +0900 |
parents | e2f29e912d0b |
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 } |