Lines Matching refs:CV2
4445 CondVar CV, CV2;
4461 // Make sure CV2.Signal() "happens after" CV.Signal()
4468 CV2.Signal();
4482 CV2.Wait(&MU2);
4484 GLOB = 2; // READ: no HB-relation between CV.Signal and CV2.Wait !
4504 CondVar CV, CV2;
4507 usleep(1000*1000); // Make sure CV2.Signal() "happens before" CV.Signal()
4522 CV2.Signal();
4534 CV2.Wait(&MU2);
4536 GLOB = 2; // READ: no HB-relation between CV.Signal and CV2.Wait !