Home | History | Annotate | Download | only in tsan

Lines Matching full:lock

512 // Lock based on pipe's send/receive. The idea (but not the code) 
597 void TSLock::Lock() {
614 PIN_LOCK lock;
621 InitLock(&rep_->lock);
626 void TSLock::Lock() {
627 GetLock(&rep_->lock, __LINE__);
632 ReleaseLock(&rep_->lock);
643 pthread_mutex_t lock;
649 __real_pthread_mutex_init(&rep_->lock, NULL);
652 __real_pthread_mutex_destroy(&rep_->lock);
655 void TSLock::Lock() {
656 __real_pthread_mutex_lock(&rep_->lock);
661 __real_pthread_mutex_unlock(&rep_->lock);
674 // Simple futex-based lock.
686 void TSLock::Lock() {
701 // We are going to block on this lock. Make sure others know that.