Lines Matching defs:CondVarWaitDeadlock
541 struct CondVarWaitDeadlock : testing::TestWithParam<int> { struct
542 absl::Mutex mu;
543 absl::CondVar cv;
544 bool cond1 = false;
545 bool cond2 = false;
546 bool read_lock1;
547 bool read_lock2;
548 bool signal_unlocked;
550 CondVarWaitDeadlock() { in CondVarWaitDeadlock() function
556 void Waiter1() { in Waiter1()
572 void Waiter2() { in Waiter2()
592 TEST_P(CondVarWaitDeadlock, Test) { in TEST_P() argument