Mercurial > hg > Members > kono > Cerium
annotate TaskManager/Cell/spe/CellScheduler.h @ 878:6f0797d596bb
hash bug fixed(?)
author | kazz <kazz@cr.ie.u-ryukyu.ac.jp> |
---|---|
date | Tue, 06 Jul 2010 10:39:41 +0900 |
parents | 95dbf6bd8cd9 |
children | bed529c55eda |
rev | line source |
---|---|
58 | 1 #ifndef INCLUDED_CELL_SCHEDULER |
2 #define INCLUDED_CELL_SCHEDULER | |
3 | |
307 | 4 #include "base.h" |
5 #include "Scheduler.h" | |
58 | 6 |
7 class CellScheduler : public Scheduler { | |
8 public: | |
109 | 9 BASE_NEW_DELETE(CellScheduler); |
10 | |
58 | 11 void init_impl(void); |
109 | 12 |
13 void *allocate(int size); | |
14 void mainMem_alloc(int id, int size); | |
15 void mainMem_wait(void); | |
451
95dbf6bd8cd9
tag fixed... test_nogl move
kazz@henri.cr.ie.u-ryukyu.ac.jp
parents:
442
diff
changeset
|
16 uint32 get_tag(); |
109 | 17 |
18 private: | |
19 int mainMemNum; | |
58 | 20 }; |
21 | |
22 #endif |