about summary refs log tree commit diff
path: root/src/engine/system.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/engine/system.h')
-rw-r--r--src/engine/system.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/engine/system.h b/src/engine/system.h
index 692aae06..fe866cdc 100644
--- a/src/engine/system.h
+++ b/src/engine/system.h
@@ -297,10 +297,8 @@ typedef struct LOCKINTERNAL *LOCK;
 LOCK lock_create();
 void lock_destroy(LOCK lock);
 
-void lock_shared(LOCK lock);
-void lock_exclusive(LOCK lock);
-int lock_try_shared(LOCK lock);
-int lock_try_exclusive(LOCK lock);
+int lock_try(LOCK lock);
+void lock_wait(LOCK lock);
 void lock_release(LOCK lock);
 
 /**** Group: Timer ****/