reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

Declarations

projects/compiler-rt/lib/tsan/rtl/tsan_rtl.h
  799 int  MutexUnlock(ThreadState *thr, uptr pc, uptr addr, u32 flagz = 0);

References

projects/compiler-rt/lib/sanitizer_common/sanitizer_common_interceptors.inc
 4163   COMMON_INTERCEPTOR_MUTEX_UNLOCK(ctx, m);
projects/compiler-rt/lib/tsan/rtl/tsan_interceptors_posix.cpp
 1151   MutexUnlock(thr, pc, (uptr)m);
 1306   MutexUnlock(thr, pc, (uptr)m);
projects/compiler-rt/lib/tsan/rtl/tsan_interface_ann.cpp
  281     MutexUnlock(thr, pc, m);
  510     ret = MutexUnlock(thr, pc, (uptr)m, flagz);
projects/compiler-rt/lib/tsan/rtl/tsan_interface_java.cpp
  193   MutexUnlock(thr, pc, addr);
  236   return MutexUnlock(thr, pc, addr, MutexFlagRecursiveUnlock);