Lines Matching refs:cond
72 #define TSIGNAL(cond) (rfbLog("%s:%d TSIGNAL(%s)\n",__FILE__,__LINE__,#cond), pthread_cond_signal(&(cond)))
73 #define WAIT(cond,mutex) (rfbLog("%s:%d WAIT(%s,%s)\n",__FILE__,__LINE__,#cond,#mutex), pthread_cond_wait(&(cond),&(mutex)))
74 #define COND(cond) pthread_cond_t (cond)
75 #define INIT_COND(cond) (rfbLog("%s:%d INIT_COND(%s)\n",__FILE__,__LINE__,#cond), pthread_cond_init(&(cond),NULL))
76 #define TINI_COND(cond) (rfbLog("%s:%d TINI_COND(%s)\n",__FILE__,__LINE__,#cond), pthread_cond_destroy(&(cond)))
86 #define TSIGNAL(cond) pthread_cond_signal(&(cond))
87 #define WAIT(cond,mutex) pthread_cond_wait(&(cond),&(mutex))
88 #define COND(cond) pthread_cond_t (cond)
89 #define INIT_COND(cond) pthread_cond_init(&(cond),NULL)
90 #define TINI_COND(cond) pthread_cond_destroy(&(cond))
99 #define TSIGNAL(cond)
100 #define WAIT(cond,mutex) this_is_unsupported
101 #define COND(cond)
102 #define INIT_COND(cond)
103 #define TINI_COND(cond)