Home | History | Annotate | Download | only in tests

Lines Matching refs:CV2

4581 CondVar CV, CV2;
4594 usleep(1000*1000); // Make sure CV2.Signal() "happens after" CV.Signal()
4599 CV2.Signal();
4611 CV2.Wait(&MU2);
4613 GLOB = 2; // READ: no HB-relation between CV.Signal and CV2.Wait !
4634 CondVar CV, CV2;
4637 usleep(1000*1000); // Make sure CV2.Signal() "happens before" CV.Signal()
4652 CV2.Signal();
4664 CV2.Wait(&MU2);
4666 GLOB = 2; // READ: no HB-relation between CV.Signal and CV2.Wait !