# HG changeset patch # User Tatsuki IHA # Date 1514827421 -32400 # Node ID 528c31b045de243f761c682d94a3950f4aaf3293 # Parent 0bec9490c199f10c2af709cf0f5e98b554da5982 Replace goto meta diff -r 0bec9490c199 -r 528c31b045de src/parallel_execution/examples/boundedBuffer/SemaphoreImpl.cbc --- a/src/parallel_execution/examples/boundedBuffer/SemaphoreImpl.cbc Mon Jan 01 19:17:01 2018 +0900 +++ b/src/parallel_execution/examples/boundedBuffer/SemaphoreImpl.cbc Tue Jan 02 02:23:41 2018 +0900 @@ -17,7 +17,7 @@ __code pOperationSemaphoreImpl(struct SemaphoreImpl* semaphore, __code next(...)) { pthread_mutex_lock(&semaphore->mutex); - goto meta(context, C_pOperationSemaphoreImpl1); + goto pOperationSemaphoreImpl1(); } __code pOperationSemaphoreImpl1(struct SemaphoreImpl* semaphore, __code next(...)) {