view TaskManager/kernel/schedule/SchedTaskList.h @ 1124:c43f49400c22 draft

add mail profile
author yutaka@localhost.localdomain
date Fri, 11 Feb 2011 20:39:24 +0900
parents 811cdd0fd418
children d585a7614cd5
line wrap: on
line source

#ifndef INCLUDED_SCHED_TASKLIST
#define INCLUDED_SCHED_TASKLIST

#include "base.h"
#include "Scheduler.h"
#include "SchedTask.h"
#include "TaskList.h"

#include "error.h"

class SchedTaskList : public SchedTask {
public:
    /* constructor */
    SchedTaskList(memaddr addr, Scheduler *sched, int tag);

    BASE_NEW_DELETE(SchedTaskList);

    /* override functions */
    void read();
    void exec();
    void write();


};


#endif