view TaskManager/kernel/schedule/SchedNop.cc @ 239:ae6aa53faf70

hey
author admin@mcbk.cr.ie.u-ryukyu.ac.jp
date Fri, 29 May 2009 15:34:13 +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);
}