view TaskManager/kernel/schedule/SchedExit.cc @ 364:87462f8d3761

uint32 to memaddr(uint64)
author tkaito@localhost.localdomain
date Fri, 24 Jul 2009 17:40:53 +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;
}