Home | History | Annotate | Download | only in unittest

Lines Matching defs:CV

55 static CondVar CV;
65 // 3. while(COND != 2) /-------- c. CV.Signal()
66 // CV.Wait(&MU) <-------/ d. MU.Unlock()
79 CV.Signal();
91 CV.Wait(&MU);
1099 pthread_cond_t cv;
1104 pthread_cond_timedwait_relative_np(&cv, &mu, &tv);
1112 pthread_cond_signal(&cv);
1118 pthread_cond_init(&cv, NULL);
1123 pthread_cond_destroy(&cv);