cond_wait

Waits on the condition variable.

Library:LibC
Classification:UNIX International
Service:Synchronization

Syntax

  #include <synch.h>
   
  int  cond_wait  (
     cond_t    *cvp,
     mutex_t   *mp );
  

Parameters

cvp

(IN) Points to the condition variable to wait on.

mp

(IN) Points to a mutually exclusive lock held by the calling thread.

Return Values

If successful, returns zero; otherwise, returns an nonzero error code.

Remarks

The cond_wait function atomically releases the entry lock pointed to by mutex and blocks the calling thread. When the condition is signaled, cond_wait returns.

It is the responsibility of the calling thread to re-evaluate the entry condition when cond_wait returns. The condition may have been consumed by a different thread between the time when a blocked thread within cond_wait awakens and when it acquires the entry mutex.

The wait can be interrupted, in which case cond_wait returns EINTR. In this case, the entry lock is not held when cond_wait returns.

See Also