Mercurial > hg > Gears > GearsAgda
view src/parallel_execution/Semaphore.cbc @ 413:497b154141de
Call CUDAExec by twice_stub
author | Tatsuki IHA <innparusu@cr.ie.u-ryukyu.ac.jp> |
---|---|
date | Thu, 14 Sep 2017 22:28:52 +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;