X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/eaaa6a06a25774c18d10bb8182cc1934ed0ed9aa..72fd19a1fb93f72832018a851a4c2dbefe1e9447:/docs/latex/wx/mutex.tex diff --git a/docs/latex/wx/mutex.tex b/docs/latex/wx/mutex.tex index 5009f0b60b..9b992c4509 100644 --- a/docs/latex/wx/mutex.tex +++ b/docs/latex/wx/mutex.tex @@ -45,7 +45,7 @@ One of: \begin{twocollist}\itemsep=0pt \twocolitem{{\bf MUTEX\_NO\_ERROR}}{There was no error.} \twocolitem{{\bf MUTEX\_DEAD\_LOCK}}{A deadlock situation was detected.} -\twocolitem{{\bf MUTEX\_BUSY}}{The thread is already running.} +\twocolitem{{\bf MUTEX\_BUSY}}{The mutex is already locked by another thread.} \end{twocollist} \membersection{wxMutex::TryLock}\label{wxmutextrylock} @@ -62,7 +62,7 @@ One of: \begin{twocollist}\itemsep=0pt \twocolitem{{\bf MUTEX\_NO\_ERROR}}{There was no error.} \twocolitem{{\bf MUTEX\_DEAD\_LOCK}}{A deadlock situation was detected.} -\twocolitem{{\bf MUTEX\_BUSY}}{The thread is already running.} +\twocolitem{{\bf MUTEX\_BUSY}}{The mutex is already locked by another thread.} \end{twocollist} \membersection{wxMutex::Unlock}\label{wxmutexunlock} @@ -79,7 +79,8 @@ One of: \begin{twocollist}\itemsep=0pt \twocolitem{{\bf MUTEX\_NO\_ERROR}}{There was no error.} \twocolitem{{\bf MUTEX\_DEAD\_LOCK}}{A deadlock situation was detected.} -\twocolitem{{\bf MUTEX\_BUSY}}{The thread is already running.} +\twocolitem{{\bf MUTEX\_BUSY}}{The mutex is already locked by another thread.} +\twocolitem{{\bf MUTEX\_UNLOCKED}}{The calling thread tries to unlock an unlocked mutex.} \end{twocollist}