view TaskManager/kernel/schedule/SchedNop2Ready.cc @ 1015:80b18af207c2

debug mail timing.
author yutaka@localhost.localdomain
date Fri, 05 Nov 2010 22:25:33 +0900
parents c67379f9d411
children
line wrap: on
line source

#include <stdio.h>
#include "SchedNop2Ready.h"
#include "SchedTaskList.h"
#include "SchedMail.h"
#include "error.h"

SchedNop2Ready::SchedNop2Ready(Scheduler *cn)
{
    scheduler = cn;
}

void
SchedNop2Ready::exec(void)
{
    __debug("[SchedNop2Ready:%s]\n", __FUNCTION__);

}

void
SchedNop2Ready::write(void)
{
    __debug("[SchedNop2Ready:%s]\n", __FUNCTION__);

#ifdef MAIL_QUEUE
    scheduler->mail_write_finish_list((memaddr)MY_SPE_STATUS_READY);
#else
    scheduler->mail_write((memaddr)MY_SPE_STATUS_READY);
#endif


}

SchedTaskBase*
SchedNop2Ready::next(Scheduler *scheduler,SchedTaskBase *p)
{
    __debug("[SchedNop2Ready:%s]\n", __FUNCTION__);


    return new SchedNop();
    
}