Home | History | Annotate | Download | only in sanitizer_common

Lines Matching defs:BlockingMutex

301 // ---------------------- BlockingMutex ---------------- {{{1
305 BlockingMutex::BlockingMutex(LinkerInitialized li) {
306 // FIXME: see comments in BlockingMutex::Lock() for the details.
314 BlockingMutex::BlockingMutex() {
320 void BlockingMutex::Lock() {
322 // FIXME: hm, global BlockingMutex objects are not initialized?!?
324 new(this) BlockingMutex((LinkerInitialized)(LINKER_INITIALIZED + 1));
335 void BlockingMutex::Unlock() {
341 void BlockingMutex::CheckLocked() {