view TaskManager/Cell/spe/SchedNop.cc @ 236:c7abab87697a

fix
author gongo@localhost.localdomain
date Sun, 29 Mar 2009 22:03:16 +0900
parents 5c194c71eca8
children
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("[SPE] SchedNop::next()");
    
    delete p;

    return new SchedMail(m);
}