view src/parallel_execution/Semaphore.h @ 491:f985815ad032

Replace goto meta for SynchronizedQueue
author Tatsuki IHA <innparusu@cr.ie.u-ryukyu.ac.jp>
date Sat, 30 Dec 2017 03:16:05 +0900
parents 6b71cf5b1c22
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;