forked from OSchip/llvm-project
parent
8a486dac25
commit
647782c78b
|
@ -326,7 +326,7 @@ TSAN_INTERCEPTOR(int, objc_sync_enter, void *obj) {
|
||||||
}
|
}
|
||||||
|
|
||||||
TSAN_INTERCEPTOR(int, objc_sync_exit, void *obj) {
|
TSAN_INTERCEPTOR(int, objc_sync_exit, void *obj) {
|
||||||
SCOPED_TSAN_INTERCEPTOR(objc_sync_enter, obj);
|
SCOPED_TSAN_INTERCEPTOR(objc_sync_exit, obj);
|
||||||
if (obj) Release(thr, pc, SyncAddressForObjCObject(obj));
|
if (obj) Release(thr, pc, SyncAddressForObjCObject(obj));
|
||||||
return REAL(objc_sync_exit)(obj);
|
return REAL(objc_sync_exit)(obj);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue