view TaskManager/kernel/schedule/SchedNop.cc @ 518:125a72948e44

....
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Fri, 16 Oct 2009 17:57:17 +0900
parents 735f76483bb2
children
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();
}