Home | History | Annotate | Download | only in sanitizer_common

Lines Matching defs:BlockingMutex

279 // ---------------------- BlockingMutex ---------------- {{{1
283 BlockingMutex::BlockingMutex(LinkerInitialized li) {
284 // FIXME: see comments in BlockingMutex::Lock() for the details.
292 BlockingMutex::BlockingMutex() {
298 void BlockingMutex::Lock() {
300 // FIXME: hm, global BlockingMutex objects are not initialized?!?
302 new(this) BlockingMutex((LinkerInitialized)(LINKER_INITIALIZED + 1));
313 void BlockingMutex::Unlock() {
319 void BlockingMutex::CheckLocked() {