File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
include/swift/Threading/Impl Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -144,8 +144,6 @@ typedef struct os_unfair_recursive_lock_s {
144
144
uint32_t ourl_count;
145
145
} os_unfair_recursive_lock, *os_unfair_recursive_lock_t ;
146
146
147
- using recursive_mutex_handle = os_unfair_recursive_lock;
148
-
149
147
extern " C" void
150
148
os_unfair_recursive_lock_lock_with_options (os_unfair_recursive_lock_t lock,
151
149
uint32_t options);
@@ -155,6 +153,8 @@ os_unfair_recursive_lock_unlock(os_unfair_recursive_lock_t lock);
155
153
156
154
#endif // OS_UNFAIR_RECURSIVE_LOCK_INIT
157
155
156
+ using recursive_mutex_handle = os_unfair_recursive_lock;
157
+
158
158
inline void recursive_mutex_init (recursive_mutex_handle &handle,
159
159
bool checked = false ) {
160
160
handle = OS_UNFAIR_RECURSIVE_LOCK_INIT;
You can’t perform that action at this time.
0 commit comments