view TaskManager/kernel/schedule/SchedNop.h @ 1546:61164c687b29 draft

fix GpuScheduler flip
author Yuhi TOMARI <yuhi@cr.ie.u-ryukyu.ac.jp>
date Tue, 05 Feb 2013 13:15:46 +0900
parents d585a7614cd5
children
line wrap: on
line source

#ifndef INCLUDED_SCHED_NOP
#define INCLUDED_SCHED_NOP

#include "base.h"
#include "Scheduler.h"
#include "SchedTaskBase.h"

#include "error.h"

class SchedNop : public SchedTaskBase {
public:
    BASE_NEW_DELETE(SchedNop);

    /* functions */
    SchedTaskBase* next(Scheduler *, SchedTaskBase *);
    const char * name() { return "Nop" ; };

};

#endif