Home | History | Annotate | Download | only in sanitizer_common

Lines Matching defs:BlockingMutex

367 // ---------------------- BlockingMutex ---------------- {{{1
371 BlockingMutex::BlockingMutex(LinkerInitialized li) {
372 // FIXME: see comments in BlockingMutex::Lock() for the details.
380 BlockingMutex::BlockingMutex() {
386 void BlockingMutex::Lock() {
388 // FIXME: hm, global BlockingMutex objects are not initialized?!?
390 new(this) BlockingMutex((LinkerInitialized)(LINKER_INITIALIZED + 1));
401 void BlockingMutex::Unlock() {
407 void BlockingMutex::CheckLocked() {