view TaskManager/kernel/schedule/SchedExit.cc @ 294:0b823cdb0d93

merge
author e065746@localhost.localdomain
date Fri, 05 Jun 2009 19:18:12 +0900
parents aa11038dbdc1
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;
}