Browse Source

remove mismatched arguments from vmlock function definitions

commit f08ab9e61a147630497198fe3239149275c0a3f4 introduced these
accidentally as remnants of some work I tried that did not work out.
Rich Felker 10 năm trước cách đây
mục cha
commit
385c01112c
1 tập tin đã thay đổi với 2 bổ sung2 xóa
  1. 2 2
      src/thread/vmlock.c

+ 2 - 2
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);