Mercurial > hg > Game > Cerium
annotate TaskManager/Cell/spe/CellScheduler.h @ 2054:2e7a6f40672f draft
add param(4) in FileMapReduce.cc
author | masa |
---|---|
date | Fri, 29 Jan 2016 15:56:28 +0900 |
parents | 424c1f16e704 |
children |
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 | |
1229 | 11 void init_impl(int useRefDma); |
109 | 12 |
13 void *allocate(int size); | |
14 void mainMem_alloc(int id, int size); | |
15 void mainMem_wait(void); | |
451
682a9bb1e2cc
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; | |
899 | 20 } ; |
58 | 21 |
22 #endif |