fix use of uninitialized pointer in gettext core
[musl.git] / src / thread / vmlock.c
blob75f3cb76190fe4e8796997e7c3d29af80fb36792
1 #include "pthread_impl.h"
3 static volatile int vmlock[2];
5 void __vm_wait()
7 int tmp;
8 while ((tmp=vmlock[0]))
9 __wait(vmlock, vmlock+1, tmp, 1);
12 void __vm_lock()
14 a_inc(vmlock);
17 void __vm_unlock()
19 if (a_fetch_add(vmlock, -1)==1 && vmlock[1])
20 __wake(vmlock, -1, 1);