view src/parallel_execution/TaskManager.cbc @ 288:f1b0cc555b6e

Add odgCommit
author Tatsuki IHA <e125716@ie.u-ryukyu.ac.jp>
date Mon, 06 Feb 2017 04:04:25 +0900
parents 2c2e4e597eb0
children f23f6d0aa4e9
line wrap: on
line source

typedef struct TaskManager<Impl>{
    union Data* taskManager;
    __code createTask(struct TaskManager* taskManager);
    __code spawn(Impl* taskManager, struct Queue* queue, struct Context* task, __code next(...));
    __code shutdown(struct LoopCounter* loopCounter, struct TaskManager* taskManager, Impl* taskManagerImpl, struct Queue* queue, __code next(...));
    __code next(...);
    __code task(...);
    struct Context* context;
    int worker;
    int cpu;
    int gpu;
    int io;
    int maxCPU;
} TaskManager;