]> git.saurik.com Git - wxWidgets.git/blobdiff - src/mac/carbon/thread.cpp
added test for wxScopeGuard
[wxWidgets.git] / src / mac / carbon / thread.cpp
index 0915d13a234b049b79d78af5ce25ce96af9f4c86..cb8ecb4c2d523b4ef4540c070d309843ff65b583 100644 (file)
@@ -1171,7 +1171,7 @@ void wxThreadInternal::Wait()
                                 kDurationForever);
             if ( err)
             {
-                wxLogSysError( _( "Cannot wait on thread to exit."));
+                wxLogSysError( _( "Cannot wait for thread termination."));
                 rc = (void*) -1;
             }
 
@@ -1721,6 +1721,9 @@ void WXDLLIMPEXP_BASE wxMutexGuiLeaveOrEnter()
     wxASSERT_MSG( wxThread::IsMain(),
                   wxT("only main thread may call wxMutexGuiLeaveOrEnter()!") );
 
+    if( !gs_critsectWaitingForGui )
+        return;
+        
     wxCriticalSectionLocker enter(*gs_critsectWaitingForGui);
 
     if ( gs_nWaitingForGui == 0 )