We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 141a72c commit a54299bCopy full SHA for a54299b
include/acl_thread.h
@@ -82,9 +82,6 @@ void acl_signal_device_update();
82
83
static inline int acl_is_locked() { return (acl_global_lock_count > 0); }
84
85
-// Used by dynamically loaded libs to check lock status.
86
-int acl_is_locked_callback(void);
87
-
88
static inline void acl_assert_locked() { assert(acl_is_locked()); }
89
90
static inline void acl_assert_locked_or_sig() {
src/acl_thread.cpp
@@ -36,8 +36,6 @@ void acl_mutex_wrapper_t::unlock() {
36
}
37
38
39
-int acl_is_locked_callback(void) { return (acl_global_lock_count > 0); }
40
41
int acl_mutex_wrapper_t::suspend_lock() {
42
int old_lock_count = acl_global_lock_count;
43
acl_global_lock_count = 0;
0 commit comments