X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/ee864b6db4f26e0cd23711d01082689ddfa022f6..b85b06e13d22e7fc1604ec1a49caa1227a1b3d36:/src/os2/thread.cpp?ds=sidebyside

diff --git a/src/os2/thread.cpp b/src/os2/thread.cpp
index f4234f2d85..f0b8e6068e 100644
--- a/src/os2/thread.cpp
+++ b/src/os2/thread.cpp
@@ -569,13 +569,6 @@ void wxThread::Yield()
     ::DosSleep(0);
 }
 
-void wxThread::Sleep(
-  unsigned long                     ulMilliseconds
-)
-{
-    ::DosSleep(ulMilliseconds);
-}
-
 int wxThread::GetCPUCount()
 {
     ULONG CPUCount;
@@ -985,7 +978,7 @@ void WXDLLEXPORT wxWakeUpMainThread()
 #endif
 }
 
-void WXDLLEXPORT wxMutexGuiEnter()
+void wxMutexGuiEnterImpl()
 {
     // this would dead lock everything...
     wxASSERT_MSG( !wxThread::IsMain(),
@@ -1007,7 +1000,7 @@ void WXDLLEXPORT wxMutexGuiEnter()
     gs_pCritsectGui->Enter();
 }
 
-void WXDLLEXPORT wxMutexGuiLeave()
+void wxMutexGuiLeaveImpl()
 {
     wxCriticalSectionLocker enter(*gs_pCritsectWaitingForGui);