Lines Matching defs:cvar
91 NSPR_API(void) PRP_DestroyNakedCondVar(PRCondVar *cvar);
96 ** Wait on the condition variable 'cvar'. It is asserted that
102 ** NB: The CV ('cvar') must be one created using PR_NewNakedCondVar.
105 PRCondVar *cvar, PRLock *lock, PRIntervalTime timeout);
110 ** Notify the condition specified 'cvar'.
112 ** NB: The CV ('cvar') must be one created using PR_NewNakedCondVar.
114 NSPR_API(PRStatus) PRP_NakedNotify(PRCondVar *cvar);
119 ** Notify the condition specified 'cvar'.
121 ** NB: The CV ('cvar') must be one created using PR_NewNakedCondVar.
123 NSPR_API(PRStatus) PRP_NakedBroadcast(PRCondVar *cvar);