view TaskManager/kernel/schedule/SchedNop.cc @ 1009:16afbf03e5d2 draft

not yet....
author yutaka@localhost.localdomain
date Thu, 28 Oct 2010 13:00:51 +0900
parents 3bc98f6d31ff
children 801d57ae1e29
line wrap: on
line source

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

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

    return new SchedMail();
}