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

merge
author e065746@localhost.localdomain
date Fri, 05 Jun 2009 19:18:12 +0900
parents 5c194c71eca8
children 8611780d479f
line wrap: on
line source

#include <stdio.h>
#include "SchedNop.h"
#include "SchedMail.h"
#include "error.h"

SchedTaskBase*
SchedNop::next(Scheduler *m, SchedTaskBase *p)
{
    __debug("SchedNop::next()");
    
    delete p;

    return new SchedMail(m);
}