Mercurial > hg > Members > Moririn
view src/parallel_execution/Buffer.h @ 511:044c25475ed4
fix stack.agda
author | mir3636 |
---|---|
date | Thu, 04 Jan 2018 14:42:21 +0900 |
parents | d8b2036c6942 |
children |
line wrap: on
line source
typedef struct Buffer<Impl>{ 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;