Mercurial > hg > Members > kono > Cerium
annotate include/TaskManager/CellScheduler.h @ 98:f320d1039d51
*** empty log message ***
author | akira |
---|---|
date | Thu, 28 Feb 2008 21:45:13 +0900 |
parents | 7492eb28b577 |
children | 5c194c71eca8 |
rev | line source |
---|---|
58 | 1 #ifndef INCLUDED_CELL_SCHEDULER |
2 #define INCLUDED_CELL_SCHEDULER | |
3 | |
4 #ifndef INCLUDED_SCHEDULER | |
5 # include "Scheduler.h" | |
6 #endif | |
7 | |
98 | 8 |
58 | 9 class CellScheduler : public Scheduler { |
10 public: | |
98 | 11 static void *tex; |
12 void *state[16]; | |
58 | 13 void init_impl(void); |
98 | 14 void *get_state(int); |
15 void *set_state(int,void*); | |
58 | 16 }; |
17 | |
98 | 18 //extern void* CellScheduler::tex; |
19 //const int CellScheduler::MAX_GLOBAL_STATE = 16; | |
20 | |
58 | 21 #endif |