annotate src/parallel_execution/TaskManager.cbc @ 269:5170539348ec
rename TaskManagerImpl.cbc
author |
mir3636 |
date |
Sun, 29 Jan 2017 22:15:32 +0900 |
parents |
d041069bc7fe |
children |
2c2e4e597eb0 |
rev |
line source |
269
|
1 typedef struct TaskMabager<Impl>{
|
|
2 union Data* taskManager;
|
|
3 __code createTask(struct TaskManager* taskManager);
|
|
4 __code spawn(Impl* taskManager, struct Queue* queue, struct Context* task, __code next(...));
|
|
5 __code shutdown(struct LoopCounter* loopCounter, struct TaskManager* taskManager, Impl* taskManagerImpl, struct Queue* queue, __code next(...));
|
|
6 __code next(...);
|
|
7 __code task(...);
|
|
8 struct Context* context;
|
|
9 int worker;
|
|
10 int cpu;
|
|
11 int gpu;
|
|
12 int io;
|
|
13 int maxCPU;
|
|
14 } TaskManager;
|