Mercurial > hg > Members > Moririn
view src/parallel_execution/Semaphore.cbc @ 346:9f8a87389b68
Add Mult.cbc
author | Tatsuki IHA <e125716@ie.u-ryukyu.ac.jp> |
---|---|
date | Tue, 30 May 2017 03:38:38 +0900 |
parents | de1e315379c6 |
children |
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;