Mercurial > hg > Members > kono > Cerium
view TaskManager/Fifo/FifoTaskManagerImpl.h @ 992:1b018a00cd17
task/DataAllocate.cc is changed for fifo64.
author | tkaito |
---|---|
date | Mon, 11 Oct 2010 19:42:28 +0900 |
parents | 9989dd7b9ac2 |
children |
line wrap: on
line source
#ifndef INCLUDED_FIFO_TASK_MANAGER_IMPL #define INCLUDED_FIFO_TASK_MANAGER_IMPL #include "TaskManagerImpl.h" #include "MainScheduler.h" #include "Scheduler.h" class FifoTaskManagerImpl : public TaskManagerImpl { public: /* constructor */ FifoTaskManagerImpl(int num = 1) : TaskManagerImpl(num) {} ~FifoTaskManagerImpl(void); /* variables */ int machineNum; QueueInfo<TaskList> *taskListInfo; QueueInfo<TaskList> *ppeTaskList; // running task MailManager *mailManager; MainScheduler *mainScheduler; /* functions */ // call by system void init(); void init(MainScheduler*, TaskManagerImpl*); void poll(); // called from CellTaskManagerImpl void run(); void show_profile() {}; void start_profile() {}; void polling(); void mail_check(); void set_runTaskList(); void sendTaskList(); // call by user }; #endif /* INCLUDED_FIFO_TASK_MANAGER_IMPL */