view src/parallel_execution/Buffer.h @ 971:edbd4495f08f

add helloWorld
author matac42 <matac@cr.ie.u-ryukyu.ac.jp>
date Thu, 17 Jun 2021 21:01:20 +0900
parents 9323327f09ae
children
line wrap: on
line source

typedef struct Buffer<>{
        union Data* buffer;
        union Data* data;
        __code put(Impl* buffer, union Data* data, __code next(...));
        __code take(Impl* buffer, __code next(union Data*, ...));
        __code next(...);
} Buffer;