]> git.saurik.com Git - wxWidgets.git/commitdiff
mention that Wait() relocks the mutex before returning (patch 1482390)
authorVadim Zeitlin <vadim@wxwidgets.org>
Sat, 6 May 2006 17:29:16 +0000 (17:29 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Sat, 6 May 2006 17:29:16 +0000 (17:29 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@39070 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

docs/latex/wx/conditn.tex

index c39e2c16898b8799911c3513fce3be68b69cbef3..1c31d62d801f5b7b4d6f9fc1c1d2a9b46e302797 100644 (file)
@@ -172,7 +172,8 @@ Waits until the condition is signalled.
 This method atomically releases the lock on the mutex associated with this
 condition (this is why it must be locked prior to calling Wait) and puts the
 thread to sleep until \helpref{Signal}{wxconditionsignal} or 
-\helpref{Broadcast}{wxconditionbroadcast} is called.
+\helpref{Broadcast}{wxconditionbroadcast} is called. It then locks the mutex
+again and returns.
 
 Note that even if \helpref{Signal}{wxconditionsignal} had been called before
 Wait without waking up any thread, the thread would still wait for another one