Mercurial > hg > Members > kono > Cerium
view include/TaskManager/CellTaskManagerImpl.h @ 70:178459e03f5c
*** empty log message ***
author | gongo |
---|---|
date | Mon, 18 Feb 2008 01:13:00 +0900 |
parents | 7d2874fb0671 |
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