mirror of
git://git.musl-libc.org/musl
synced 2025-03-25 04:18:21 +00:00
remove mismatched arguments from vmlock function definitions
commit f08ab9e61a
introduced these
accidentally as remnants of some work I tried that did not work out.
This commit is contained in:
parent
a2d3053354
commit
385c01112c
@ -9,12 +9,12 @@ void __vm_wait()
|
|||||||
__wait(vmlock, vmlock+1, tmp, 1);
|
__wait(vmlock, vmlock+1, tmp, 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
void __vm_lock(pthread_t self)
|
void __vm_lock()
|
||||||
{
|
{
|
||||||
a_inc(vmlock);
|
a_inc(vmlock);
|
||||||
}
|
}
|
||||||
|
|
||||||
void __vm_unlock(pthread_t self)
|
void __vm_unlock()
|
||||||
{
|
{
|
||||||
if (a_fetch_add(vmlock, -1)==1 && vmlock[1])
|
if (a_fetch_add(vmlock, -1)==1 && vmlock[1])
|
||||||
__wake(vmlock, -1, 1);
|
__wake(vmlock, -1, 1);
|
||||||
|
Loading…
Reference in New Issue
Block a user