view src/parallel_execution/Executor.h @ 538:c0b6ce2ed820

Add comment
author Tatsuki IHA <innparusu@cr.ie.u-ryukyu.ac.jp>
date Tue, 13 Feb 2018 04:35:17 +0900
parents 6ca515352a76
children 39b5adbcd83f
line wrap: on
line source

typedef struct Executor<Impl>{
    union Data* Executor;
    struct Context* task;
    __code next(...);
    __code read(Impl* executor, struct Context* task, __code next(...));
    __code exec(Impl* executor, struct Context* task, __code next(...));
    __code write(Impl* executor, struct Context* task, __code next(...));
}