X-Git-Url: http://nsz.repo.hu/git/?p=musl;a=blobdiff_plain;f=src%2Fthread%2Fpthread_barrier_wait.c;h=6052925a819a5280f627572d8a6b6455dcfa0b71;hp=71f7b5feebac79867b2fbbcd4cd1feac178194f7;hb=de543b05c87d79a9313991810e9ee8ecdaad8f19;hpb=ede5ae7b0bb5a7ed9edeb2eeb8e24d30af64d185 diff --git a/src/thread/pthread_barrier_wait.c b/src/thread/pthread_barrier_wait.c index 71f7b5fe..6052925a 100644 --- a/src/thread/pthread_barrier_wait.c +++ b/src/thread/pthread_barrier_wait.c @@ -13,9 +13,9 @@ void __vm_lock(int inc) void __vm_unlock(void) { - if (vmlock[0]>0) a_dec(vmlock); - else a_inc(vmlock); - if (vmlock[1]) __wake(vmlock, 1, 1); + int inc = vmlock[0]>0 ? -1 : 1; + if (a_fetch_add(vmlock, inc)==-inc && vmlock[1]) + __wake(vmlock, -1, 1); } static int pshared_barrier_wait(pthread_barrier_t *b)