Mercurial > hg > Members > Moririn
view src/parallel_execution/Semaphore.cbc @ 307:700f247f32a1
minor fix
author | Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
---|---|
date | Tue, 14 Feb 2017 12:31:58 +0900 |
parents | fd470e090403 |
children | de1e315379c6 |
line wrap: on
line source
typedef struct Semaphore<Impl>{ union Data* semaphore; __code p(Impl* semaphore, __code next(...)); __code v(Impl* semaphore, __code next(...)); __code next(...); } Semaphore;