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

*** empty log message ***
author gongo
date Thu, 14 Feb 2008 18:27:37 +0900
parents
children 8611780d479f
line wrap: on
line source

#include <stdio.h>
#include "SchedExit.h"
#include "error.h"

SchedTaskBase*
SchedExit::next(Scheduler *m, SchedTaskBase *p)
{
    delete p;

    __debug("SchedExit::next()\n");

    return NULL;
}