Skip to content

Commit

Permalink
vlc_addr_wait: clarify documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
Rémi Denis-Courmont committed Aug 5, 2016
1 parent 415892b commit 526705c
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions include/vlc_threads.h
Original file line number Diff line number Diff line change
Expand Up @@ -624,8 +624,10 @@ VLC_API void *vlc_threadvar_get(vlc_threadvar_t);
* Waits on an address.
*
* Puts the calling thread to sleep if a specific value is stored at a
* specified address. If the value does not match, do nothing and return
* immediately.
* specified address. The thread will sleep until it is woken up by a call to
* vlc_addr_signal() or vlc_addr_broadcast() in another thread, or spuriously.
*
* If the value does not match, do nothing and return immediately.
*
* \param addr address to check for
* \param val value to match at the address
Expand Down

0 comments on commit 526705c

Please sign in to comment.