view TaskManager/Cell/spe/SchedNop.cc @ 240:b1cfa1c19662 draft

fix
author k098586@localhost.localdomain
date Fri, 29 May 2009 15:45:09 +0900
parents 028ffc9c0375
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);
}