Mercurial > hg > Members > kono > Cerium
view include/TaskManager/CellTaskManagerImpl.h @ 89:a309cf4eafc5
*** empty log message ***
author | gongo |
---|---|
date | Wed, 27 Feb 2008 17:26:40 +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