Lines Matching refs:cv
104 /* Report that wait on the condition variable at address "cv" has succeeded
106 #define _Py_ANNOTATE_CONDVAR_LOCK_WAIT(cv, lock) \
107 AnnotateCondVarWait(__FILE__, __LINE__, cv, lock)
109 /* Report that wait on the condition variable at "cv" has succeeded. Variant
111 #define _Py_ANNOTATE_CONDVAR_WAIT(cv) \
112 AnnotateCondVarWait(__FILE__, __LINE__, cv, NULL)
115 "cv". */
116 #define _Py_ANNOTATE_CONDVAR_SIGNAL(cv) \
117 AnnotateCondVarSignal(__FILE__, __LINE__, cv)
119 /* Report that we are about to signal_all on the condition variable at "cv". */
120 #define _Py_ANNOTATE_CONDVAR_SIGNAL_ALL(cv) \
121 AnnotateCondVarSignalAll(__FILE__, __LINE__, cv)
336 #define _Py_ANNOTATE_CONDVAR_LOCK_WAIT(cv, lock) /* empty */
337 #define _Py_ANNOTATE_CONDVAR_WAIT(cv) /* empty */
338 #define _Py_ANNOTATE_CONDVAR_SIGNAL(cv) /* empty */
339 #define _Py_ANNOTATE_CONDVAR_SIGNAL_ALL(cv) /* empty */
393 const volatile void *cv,
396 const volatile void *cv);
398 const volatile void *cv);