view src/parallel_execution/Buffer.h @ 771:9323327f09ae

remove generics
author anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
date Sat, 09 Jan 2021 17:15:01 +0900
parents d8b2036c6942
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;