view TaskManager/kernel/schedule/SchedNop.cc @ 47:8266445bdac2

*** empty log message ***
author gongo
date Fri, 15 Feb 2008 13:09:58 +0900
parents aa11038dbdc1
children 5c194c71eca8
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->connector);
}