]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/thread.h
wxStaticBitmapBase::DoGetBestSize
[wxWidgets.git] / include / wx / thread.h
index b3cc0a45f0b589fb5fe621fd2d34cfee1fda4ece..1e7d9f215e3ed2e4694bea563d368ae652b7ddbc 100644 (file)
@@ -249,7 +249,11 @@ private:
     // finally, we need this typedef instead of declaring m_buffer directly
     // because otherwise the assert mentioned above wouldn't compile with some
     // compilers (notably CodeWarrior 8)
+#ifdef __WIN64__
+    typedef char wxCritSectBuffer[40];
+#else // __WIN32__
     typedef char wxCritSectBuffer[24];
+#endif
     union
     {
         unsigned long m_dummy1;
@@ -732,7 +736,7 @@ public:
 
 #if wxUSE_THREADS
 
-#if defined(__WXMSW__) || defined(__WXMAC__) || defined(__WXPM__)
+#if defined(__WXMSW__) || defined(__WXMAC__) || defined(__WXPM__) || defined(__EMX__)
     // unlock GUI if there are threads waiting for and lock it back when
     // there are no more of them - should be called periodically by the main
     // thread