comparison TaskManager/kernel/schedule/SchedExit.cc @ 42:aa11038dbdc1

*** empty log message ***
author gongo
date Thu, 14 Feb 2008 18:27:37 +0900
parents
children 8611780d479f
comparison
equal deleted inserted replaced
41:68fb5bfee6b7 42:aa11038dbdc1
1 #include <stdio.h>
2 #include "SchedExit.h"
3 #include "error.h"
4
5 SchedTaskBase*
6 SchedExit::next(Scheduler *m, SchedTaskBase *p)
7 {
8 delete p;
9
10 __debug("SchedExit::next()\n");
11
12 return NULL;
13 }