Mercurial > hg > Members > kono > Cerium
view include/TaskManager/CellTaskManagerImpl.h @ 96:32be65e25785
*** empty log message ***
author | akira |
---|---|
date | Thu, 28 Feb 2008 20:05:23 +0900 |
parents | 178459e03f5c |
children | 5c194c71eca8 |
line wrap: on
line source
#ifndef INCLUDED_CELL_TASK_MANAGER_IMPL #define INCLUDED_CELL_TASK_MANAGER_IMPL #ifndef INCLUDED_TASK_MANAGER_IMPL # include "TaskManagerImpl.h" #endif #ifndef INCLUDED_SPE_THREADS # include "SpeThreads.h" #endif class CellTaskManagerImpl : public TaskManagerImpl { public: /* constructor */ CellTaskManagerImpl(int num = 1); /* variables */ SpeThreads *speThreads; /* functions */ void init(void); void run(void); MailQueuePtr mail_check(MailQueuePtr mail_list); TaskListPtr set_task(void); }; #endif