Notifies a thread that is waiting on the specified condition variable.
Syntax
#include "slapi-plugin.h"
int slapi_notify_condvar( Slapi_CondVar *cvar, int notify_all );
Parameters
The function has the following parameters:
Returns. One of the following values:
Description. This function notifies one or all threads that are waiting on the condition
variable (see the slapi_wait_condvar() function). Before calling this
function, the calling thread must lock the mutex associated with this condition
variable.
Example
[To be added]
See Also