| author | Rich Felker <dalias@aerifal.cx> | 2015年04月11日 10:38:57 -0400 |
|---|---|---|
| committer | Rich Felker <dalias@aerifal.cx> | 2015年04月11日 10:38:57 -0400 |
| commit | 385c01112c083eb383d972da45836d497cc0556d (patch) | |
| tree | bd15fd3792124462c80b2006f45e93a1c2981ccb /src | |
| parent | a2d3053354432f3e3b5a787c1527d4b414e9acb0 (diff) | |
| download | musl-385c01112c083eb383d972da45836d497cc0556d.tar.gz | |
| -rw-r--r-- | src/thread/vmlock.c | 4 |
diff --git a/src/thread/vmlock.c b/src/thread/vmlock.c index 0a69b3e3..75f3cb76 100644 --- a/src/thread/vmlock.c +++ b/src/thread/vmlock.c @@ -9,12 +9,12 @@ void __vm_wait() __wait(vmlock, vmlock+1, tmp, 1); } -void __vm_lock(pthread_t self) +void __vm_lock() { a_inc(vmlock); } -void __vm_unlock(pthread_t self) +void __vm_unlock() { if (a_fetch_add(vmlock, -1)==1 && vmlock[1]) __wake(vmlock, -1, 1); |