view TaskManager/kernel/schedule/SchedExit.cc @ 235:7578005fb76b

fix Makefile
author gongo@localhost.localdomain
date Sun, 29 Mar 2009 22:02:09 +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;
}