1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/msw/thread.cpp
3 // Purpose: wxThread Implementation
4 // Author: Original from Wolfram Gloger/Guilhem Lavaux
5 // Modified by: Vadim Zeitlin to make it work :-)
8 // Copyright: (c) Wolfram Gloger (1996, 1997), Guilhem Lavaux (1998);
9 // Vadim Zeitlin (1999-2002)
10 // Licence: wxWindows licence
11 /////////////////////////////////////////////////////////////////////////////
13 // ----------------------------------------------------------------------------
15 // ----------------------------------------------------------------------------
17 // For compilers that support precompilation, includes "wx.h".
18 #include "wx/wxprec.h"
20 #if defined(__BORLANDC__)
26 #include "wx/thread.h"
31 #include "wx/module.h"
34 #include "wx/apptrait.h"
35 #include "wx/scopeguard.h"
37 #include "wx/msw/private.h"
38 #include "wx/msw/missing.h"
39 #include "wx/msw/seh.h"
41 #include "wx/except.h"
43 // must have this symbol defined to get _beginthread/_endthread declarations
48 #if defined(__BORLANDC__)
50 // I can't set -tWM in the IDE (anyone?) so have to do this
54 #if !defined(__MFC_COMPAT__)
55 // Needed to know about _beginthreadex etc..
56 #define __MFC_COMPAT__
60 // define wxUSE_BEGIN_THREAD if the compiler has _beginthreadex() function
61 // which should be used instead of Win32 ::CreateThread() if possible
62 #if defined(__VISUALC__) || \
63 (defined(__BORLANDC__) && (__BORLANDC__ >= 0x500)) || \
64 (defined(__GNUG__) && defined(__MSVCRT__)) || \
65 defined(__WATCOMC__) || defined(__MWERKS__)
68 #undef wxUSE_BEGIN_THREAD
69 #define wxUSE_BEGIN_THREAD
74 #ifdef wxUSE_BEGIN_THREAD
75 // this is where _beginthreadex() is declared
78 // the return type of the thread function entry point: notice that this
79 // type can't hold a pointer under Win64
80 typedef unsigned THREAD_RETVAL
;
82 // the calling convention of the thread function entry point
83 #define THREAD_CALLCONV __stdcall
85 // the settings for CreateThread()
86 typedef DWORD THREAD_RETVAL
;
87 #define THREAD_CALLCONV WINAPI
90 static const THREAD_RETVAL THREAD_ERROR_EXIT
= (THREAD_RETVAL
)-1;
92 // ----------------------------------------------------------------------------
94 // ----------------------------------------------------------------------------
96 // the possible states of the thread ("=>" shows all possible transitions from
100 STATE_NEW
, // didn't start execution yet (=> RUNNING)
101 STATE_RUNNING
, // thread is running (=> PAUSED, CANCELED)
102 STATE_PAUSED
, // thread is temporarily suspended (=> RUNNING)
103 STATE_CANCELED
, // thread should terminate a.s.a.p. (=> EXITED)
104 STATE_EXITED
// thread is terminating
107 // ----------------------------------------------------------------------------
108 // this module globals
109 // ----------------------------------------------------------------------------
111 // TLS index of the slot where we store the pointer to the current thread
112 static DWORD gs_tlsThisThread
= 0xFFFFFFFF;
114 // id of the main thread - the one which can call GUI functions without first
115 // calling wxMutexGuiEnter()
116 static DWORD gs_idMainThread
= 0;
118 // if it's false, some secondary thread is holding the GUI lock
119 static bool gs_bGuiOwnedByMainThread
= true;
121 // critical section which controls access to all GUI functions: any secondary
122 // thread (i.e. except the main one) must enter this crit section before doing
124 static wxCriticalSection
*gs_critsectGui
= NULL
;
126 // critical section which protects gs_nWaitingForGui variable
127 static wxCriticalSection
*gs_critsectWaitingForGui
= NULL
;
129 // critical section which serializes WinThreadStart() and WaitForTerminate()
130 // (this is a potential bottleneck, we use a single crit sect for all threads
131 // in the system, but normally time spent inside it should be quite short)
132 static wxCriticalSection
*gs_critsectThreadDelete
= NULL
;
134 // number of threads waiting for GUI in wxMutexGuiEnter()
135 static size_t gs_nWaitingForGui
= 0;
137 // are we waiting for a thread termination?
138 static bool gs_waitingForThread
= false;
140 // ============================================================================
141 // Windows implementation of thread and related classes
142 // ============================================================================
144 // ----------------------------------------------------------------------------
146 // ----------------------------------------------------------------------------
148 wxCriticalSection::wxCriticalSection( wxCriticalSectionType
WXUNUSED(critSecType
) )
150 wxCOMPILE_TIME_ASSERT( sizeof(CRITICAL_SECTION
) <= sizeof(wxCritSectBuffer
),
151 wxCriticalSectionBufferTooSmall
);
153 ::InitializeCriticalSection((CRITICAL_SECTION
*)m_buffer
);
156 wxCriticalSection::~wxCriticalSection()
158 ::DeleteCriticalSection((CRITICAL_SECTION
*)m_buffer
);
161 void wxCriticalSection::Enter()
163 ::EnterCriticalSection((CRITICAL_SECTION
*)m_buffer
);
166 void wxCriticalSection::Leave()
168 ::LeaveCriticalSection((CRITICAL_SECTION
*)m_buffer
);
171 // ----------------------------------------------------------------------------
173 // ----------------------------------------------------------------------------
175 class wxMutexInternal
178 wxMutexInternal(wxMutexType mutexType
);
181 bool IsOk() const { return m_mutex
!= NULL
; }
183 wxMutexError
Lock() { return LockTimeout(INFINITE
); }
184 wxMutexError
Lock(unsigned long ms
) { return LockTimeout(ms
); }
185 wxMutexError
TryLock();
186 wxMutexError
Unlock();
189 wxMutexError
LockTimeout(DWORD milliseconds
);
193 unsigned long m_owningThread
;
197 DECLARE_NO_COPY_CLASS(wxMutexInternal
)
200 // all mutexes are recursive under Win32 so we don't use mutexType
201 wxMutexInternal::wxMutexInternal(wxMutexType mutexType
)
203 // create a nameless (hence intra process and always private) mutex
204 m_mutex
= ::CreateMutex
206 NULL
, // default secutiry attributes
207 FALSE
, // not initially locked
217 wxLogLastError(_T("CreateMutex()"));
222 wxMutexInternal::~wxMutexInternal()
226 if ( !::CloseHandle(m_mutex
) )
228 wxLogLastError(_T("CloseHandle(mutex)"));
233 wxMutexError
wxMutexInternal::TryLock()
235 const wxMutexError rc
= LockTimeout(0);
237 // we have a special return code for timeout in this case
238 return rc
== wxMUTEX_TIMEOUT
? wxMUTEX_BUSY
: rc
;
241 wxMutexError
wxMutexInternal::LockTimeout(DWORD milliseconds
)
243 if (m_type
== wxMUTEX_DEFAULT
)
245 // Don't allow recursive
248 if (m_owningThread
== wxThread::GetCurrentId())
249 return wxMUTEX_DEAD_LOCK
;
253 DWORD rc
= ::WaitForSingleObject(m_mutex
, milliseconds
);
254 if ( rc
== WAIT_ABANDONED
)
256 // the previous caller died without releasing the mutex, but now we can
258 wxLogDebug(_T("WaitForSingleObject() returned WAIT_ABANDONED"));
260 // use 0 timeout, normally we should always get it
261 rc
= ::WaitForSingleObject(m_mutex
, 0);
271 return wxMUTEX_TIMEOUT
;
273 case WAIT_ABANDONED
: // checked for above
275 wxFAIL_MSG(wxT("impossible return value in wxMutex::Lock"));
279 wxLogLastError(_T("WaitForSingleObject(mutex)"));
280 return wxMUTEX_MISC_ERROR
;
283 if (m_type
== wxMUTEX_DEFAULT
)
285 // required for checking recursiveness
287 m_owningThread
= wxThread::GetCurrentId();
290 return wxMUTEX_NO_ERROR
;
293 wxMutexError
wxMutexInternal::Unlock()
295 if ( !::ReleaseMutex(m_mutex
) )
297 wxLogLastError(_T("ReleaseMutex()"));
299 return wxMUTEX_MISC_ERROR
;
302 // required for checking recursiveness
305 return wxMUTEX_NO_ERROR
;
308 // --------------------------------------------------------------------------
310 // --------------------------------------------------------------------------
312 // a trivial wrapper around Win32 semaphore
313 class wxSemaphoreInternal
316 wxSemaphoreInternal(int initialcount
, int maxcount
);
317 ~wxSemaphoreInternal();
319 bool IsOk() const { return m_semaphore
!= NULL
; }
321 wxSemaError
Wait() { return WaitTimeout(INFINITE
); }
323 wxSemaError
TryWait()
325 wxSemaError rc
= WaitTimeout(0);
326 if ( rc
== wxSEMA_TIMEOUT
)
332 wxSemaError
WaitTimeout(unsigned long milliseconds
);
339 DECLARE_NO_COPY_CLASS(wxSemaphoreInternal
)
342 wxSemaphoreInternal::wxSemaphoreInternal(int initialcount
, int maxcount
)
344 #if !defined(_WIN32_WCE) || (_WIN32_WCE >= 300)
347 // make it practically infinite
351 m_semaphore
= ::CreateSemaphore
353 NULL
, // default security attributes
361 wxLogLastError(_T("CreateSemaphore()"));
365 wxSemaphoreInternal::~wxSemaphoreInternal()
369 if ( !::CloseHandle(m_semaphore
) )
371 wxLogLastError(_T("CloseHandle(semaphore)"));
376 wxSemaError
wxSemaphoreInternal::WaitTimeout(unsigned long milliseconds
)
378 DWORD rc
= ::WaitForSingleObject( m_semaphore
, milliseconds
);
383 return wxSEMA_NO_ERROR
;
386 return wxSEMA_TIMEOUT
;
389 wxLogLastError(_T("WaitForSingleObject(semaphore)"));
392 return wxSEMA_MISC_ERROR
;
395 wxSemaError
wxSemaphoreInternal::Post()
397 #if !defined(_WIN32_WCE) || (_WIN32_WCE >= 300)
398 if ( !::ReleaseSemaphore(m_semaphore
, 1, NULL
/* ptr to previous count */) )
400 if ( GetLastError() == ERROR_TOO_MANY_POSTS
)
402 return wxSEMA_OVERFLOW
;
406 wxLogLastError(_T("ReleaseSemaphore"));
407 return wxSEMA_MISC_ERROR
;
411 return wxSEMA_NO_ERROR
;
413 return wxSEMA_MISC_ERROR
;
417 // ----------------------------------------------------------------------------
418 // wxThread implementation
419 // ----------------------------------------------------------------------------
421 // wxThreadInternal class
422 // ----------------------
424 class wxThreadInternal
427 wxThreadInternal(wxThread
*thread
)
432 m_priority
= WXTHREAD_DEFAULT_PRIORITY
;
445 if ( !::CloseHandle(m_hThread
) )
447 wxLogLastError(wxT("CloseHandle(thread)"));
454 // create a new (suspended) thread (for the given thread object)
455 bool Create(wxThread
*thread
, unsigned int stackSize
);
457 // wait for the thread to terminate, either by itself, or by asking it
458 // (politely, this is not Kill()!) to do it
459 wxThreadError
WaitForTerminate(wxCriticalSection
& cs
,
460 wxThread::ExitCode
*pRc
,
461 wxThread
*threadToDelete
= NULL
);
463 // kill the thread unconditionally
464 wxThreadError
Kill();
466 // suspend/resume/terminate
469 void Cancel() { m_state
= STATE_CANCELED
; }
472 void SetState(wxThreadState state
) { m_state
= state
; }
473 wxThreadState
GetState() const { return m_state
; }
476 void SetPriority(unsigned int priority
);
477 unsigned int GetPriority() const { return m_priority
; }
479 // thread handle and id
480 HANDLE
GetHandle() const { return m_hThread
; }
481 DWORD
GetId() const { return m_tid
; }
483 // the thread function forwarding to DoThreadStart
484 static THREAD_RETVAL THREAD_CALLCONV
WinThreadStart(void *thread
);
486 // really start the thread (if it's not already dead)
487 static THREAD_RETVAL
DoThreadStart(wxThread
*thread
);
489 // call OnExit() on the thread
490 static void DoThreadOnExit(wxThread
*thread
);
495 if ( m_thread
->IsDetached() )
496 ::InterlockedIncrement(&m_nRef
);
501 if ( m_thread
->IsDetached() && !::InterlockedDecrement(&m_nRef
) )
506 // the thread we're associated with
509 HANDLE m_hThread
; // handle of the thread
510 wxThreadState m_state
; // state, see wxThreadState enum
511 unsigned int m_priority
; // thread priority in "wx" units
512 DWORD m_tid
; // thread id
514 // number of threads which need this thread to remain alive, when the count
515 // reaches 0 we kill the owning wxThread -- and die ourselves with it
518 DECLARE_NO_COPY_CLASS(wxThreadInternal
)
521 // small class which keeps a thread alive during its lifetime
522 class wxThreadKeepAlive
525 wxThreadKeepAlive(wxThreadInternal
& thrImpl
) : m_thrImpl(thrImpl
)
526 { m_thrImpl
.KeepAlive(); }
528 { m_thrImpl
.LetDie(); }
531 wxThreadInternal
& m_thrImpl
;
535 void wxThreadInternal::DoThreadOnExit(wxThread
*thread
)
541 wxCATCH_ALL( wxTheApp
->OnUnhandledException(); )
545 THREAD_RETVAL
wxThreadInternal::DoThreadStart(wxThread
*thread
)
547 wxON_BLOCK_EXIT1(DoThreadOnExit
, thread
);
549 THREAD_RETVAL rc
= THREAD_ERROR_EXIT
;
553 // store the thread object in the TLS
554 if ( !::TlsSetValue(gs_tlsThisThread
, thread
) )
556 wxLogSysError(_("Can not start thread: error writing TLS."));
558 return THREAD_ERROR_EXIT
;
561 rc
= wxPtrToUInt(thread
->Entry());
563 wxCATCH_ALL( wxTheApp
->OnUnhandledException(); )
569 THREAD_RETVAL THREAD_CALLCONV
wxThreadInternal::WinThreadStart(void *param
)
571 THREAD_RETVAL rc
= THREAD_ERROR_EXIT
;
573 wxThread
* const thread
= (wxThread
*)param
;
575 // each thread has its own SEH translator so install our own a.s.a.p.
576 DisableAutomaticSETranslator();
578 // first of all, check whether we hadn't been cancelled already and don't
579 // start the user code at all then
580 const bool hasExited
= thread
->m_internal
->GetState() == STATE_EXITED
;
582 // run the thread function itself inside a SEH try/except block
586 DoThreadOnExit(thread
);
588 rc
= DoThreadStart(thread
);
590 wxSEH_HANDLE(THREAD_ERROR_EXIT
)
593 // save IsDetached because thread object can be deleted by joinable
594 // threads after state is changed to STATE_EXITED.
595 const bool isDetached
= thread
->IsDetached();
598 // enter m_critsect before changing the thread state
600 // NB: can't use wxCriticalSectionLocker here as we use SEH and it's
601 // incompatible with C++ object dtors
602 thread
->m_critsect
.Enter();
603 thread
->m_internal
->SetState(STATE_EXITED
);
604 thread
->m_critsect
.Leave();
607 // the thread may delete itself now if it wants, we don't need it any more
609 thread
->m_internal
->LetDie();
614 void wxThreadInternal::SetPriority(unsigned int priority
)
616 m_priority
= priority
;
618 // translate wxWidgets priority to the Windows one
620 if (m_priority
<= 20)
621 win_priority
= THREAD_PRIORITY_LOWEST
;
622 else if (m_priority
<= 40)
623 win_priority
= THREAD_PRIORITY_BELOW_NORMAL
;
624 else if (m_priority
<= 60)
625 win_priority
= THREAD_PRIORITY_NORMAL
;
626 else if (m_priority
<= 80)
627 win_priority
= THREAD_PRIORITY_ABOVE_NORMAL
;
628 else if (m_priority
<= 100)
629 win_priority
= THREAD_PRIORITY_HIGHEST
;
632 wxFAIL_MSG(wxT("invalid value of thread priority parameter"));
633 win_priority
= THREAD_PRIORITY_NORMAL
;
636 if ( !::SetThreadPriority(m_hThread
, win_priority
) )
638 wxLogSysError(_("Can't set thread priority"));
642 bool wxThreadInternal::Create(wxThread
*thread
, unsigned int stackSize
)
644 wxASSERT_MSG( m_state
== STATE_NEW
&& !m_hThread
,
645 _T("Create()ing thread twice?") );
647 // for compilers which have it, we should use C RTL function for thread
648 // creation instead of Win32 API one because otherwise we will have memory
649 // leaks if the thread uses C RTL (and most threads do)
650 #ifdef wxUSE_BEGIN_THREAD
652 // Watcom is reported to not like 0 stack size (which means "use default"
653 // for the other compilers and is also the default value for stackSize)
657 #endif // __WATCOMC__
659 m_hThread
= (HANDLE
)_beginthreadex
661 NULL
, // default security
663 wxThreadInternal::WinThreadStart
, // entry point
666 (unsigned int *)&m_tid
668 #else // compiler doesn't have _beginthreadex
669 m_hThread
= ::CreateThread
671 NULL
, // default security
672 stackSize
, // stack size
673 wxThreadInternal::WinThreadStart
, // thread entry point
674 (LPVOID
)thread
, // parameter
675 CREATE_SUSPENDED
, // flags
676 &m_tid
// [out] thread id
678 #endif // _beginthreadex/CreateThread
680 if ( m_hThread
== NULL
)
682 wxLogSysError(_("Can't create thread"));
687 if ( m_priority
!= WXTHREAD_DEFAULT_PRIORITY
)
689 SetPriority(m_priority
);
695 wxThreadError
wxThreadInternal::Kill()
697 if ( !::TerminateThread(m_hThread
, THREAD_ERROR_EXIT
) )
699 wxLogSysError(_("Couldn't terminate thread"));
701 return wxTHREAD_MISC_ERROR
;
706 return wxTHREAD_NO_ERROR
;
710 wxThreadInternal::WaitForTerminate(wxCriticalSection
& cs
,
711 wxThread::ExitCode
*pRc
,
712 wxThread
*threadToDelete
)
714 // prevent the thread C++ object from disappearing as long as we are using
716 wxThreadKeepAlive
keepAlive(*this);
719 // we may either wait passively for the thread to terminate (when called
720 // from Wait()) or ask it to terminate (when called from Delete())
721 bool shouldDelete
= threadToDelete
!= NULL
;
725 // we might need to resume the thread if it's currently stopped
726 bool shouldResume
= false;
728 // as Delete() (which calls us) is always safe to call we need to consider
729 // all possible states
731 wxCriticalSectionLocker
lock(cs
);
733 if ( m_state
== STATE_NEW
)
737 // WinThreadStart() will see it and terminate immediately, no
738 // need to cancel the thread -- but we still need to resume it
740 m_state
= STATE_EXITED
;
742 // we must call Resume() as the thread hasn't been initially
743 // resumed yet (and as Resume() it knows about STATE_EXITED
744 // special case, it won't touch it and WinThreadStart() will
745 // just exit immediately)
747 shouldDelete
= false;
749 //else: shouldResume is correctly set to false here, wait until
750 // someone else runs the thread and it finishes
752 else // running, paused, cancelled or even exited
754 shouldResume
= m_state
== STATE_PAUSED
;
758 // resume the thread if it is paused
762 // ask the thread to terminate
765 wxCriticalSectionLocker
lock(cs
);
771 // now wait for thread to finish
772 if ( wxThread::IsMain() )
774 // set flag for wxIsWaitingForThread()
775 gs_waitingForThread
= true;
778 // we can't just wait for the thread to terminate because it might be
779 // calling some GUI functions and so it will never terminate before we
780 // process the Windows messages that result from these functions
781 // (note that even in console applications we might have to process
782 // messages if we use wxExecute() or timers or ...)
783 DWORD result
wxDUMMY_INITIALIZE(0);
786 if ( wxThread::IsMain() )
788 // give the thread we're waiting for chance to do the GUI call
790 if ( (gs_nWaitingForGui
> 0) && wxGuiOwnedByMainThread() )
796 wxAppTraits
*traits
= wxTheApp
? wxTheApp
->GetTraits() : NULL
;
799 result
= traits
->WaitForThread(m_hThread
);
801 else // can't wait for the thread
811 wxLogSysError(_("Can not wait for thread termination"));
813 return wxTHREAD_KILLED
;
816 // thread we're waiting for terminated
819 case WAIT_OBJECT_0
+ 1:
820 // new message arrived, process it -- but only if we're the
821 // main thread as we don't support processing messages in
824 // NB: we still must include QS_ALLINPUT even when waiting
825 // in a secondary thread because if it had created some
826 // window somehow (possible not even using wxWidgets)
827 // the system might dead lock then
828 if ( wxThread::IsMain() )
830 if ( traits
&& !traits
->DoMessageFromThreadWait() )
832 // WM_QUIT received: kill the thread
835 return wxTHREAD_KILLED
;
841 wxFAIL_MSG(wxT("unexpected result of MsgWaitForMultipleObject"));
843 } while ( result
!= WAIT_OBJECT_0
);
845 if ( wxThread::IsMain() )
847 gs_waitingForThread
= false;
851 // although the thread might be already in the EXITED state it might not
852 // have terminated yet and so we are not sure that it has actually
853 // terminated if the "if" above hadn't been taken
856 if ( !::GetExitCodeThread(m_hThread
, &rc
) )
858 wxLogLastError(wxT("GetExitCodeThread"));
860 rc
= THREAD_ERROR_EXIT
;
865 if ( rc
!= STILL_ACTIVE
)
868 // give the other thread some time to terminate, otherwise we may be
874 *pRc
= wxUIntToPtr(rc
);
876 // we don't need the thread handle any more in any case
880 return rc
== THREAD_ERROR_EXIT
? wxTHREAD_MISC_ERROR
: wxTHREAD_NO_ERROR
;
883 bool wxThreadInternal::Suspend()
885 DWORD nSuspendCount
= ::SuspendThread(m_hThread
);
886 if ( nSuspendCount
== (DWORD
)-1 )
888 wxLogSysError(_("Can not suspend thread %x"), m_hThread
);
893 m_state
= STATE_PAUSED
;
898 bool wxThreadInternal::Resume()
900 DWORD nSuspendCount
= ::ResumeThread(m_hThread
);
901 if ( nSuspendCount
== (DWORD
)-1 )
903 wxLogSysError(_("Can not resume thread %x"), m_hThread
);
908 // don't change the state from STATE_EXITED because it's special and means
909 // we are going to terminate without running any user code - if we did it,
910 // the code in WaitForTerminate() wouldn't work
911 if ( m_state
!= STATE_EXITED
)
913 m_state
= STATE_RUNNING
;
922 wxThread
*wxThread::This()
924 wxThread
*thread
= (wxThread
*)::TlsGetValue(gs_tlsThisThread
);
926 // be careful, 0 may be a valid return value as well
927 if ( !thread
&& (::GetLastError() != NO_ERROR
) )
929 wxLogSysError(_("Couldn't get the current thread pointer"));
937 bool wxThread::IsMain()
939 return ::GetCurrentThreadId() == gs_idMainThread
|| gs_idMainThread
== 0;
942 void wxThread::Yield()
944 // 0 argument to Sleep() is special and means to just give away the rest of
949 int wxThread::GetCPUCount()
954 return si
.dwNumberOfProcessors
;
957 unsigned long wxThread::GetCurrentId()
959 return (unsigned long)::GetCurrentThreadId();
962 bool wxThread::SetConcurrency(size_t WXUNUSED_IN_WINCE(level
))
967 wxASSERT_MSG( IsMain(), _T("should only be called from the main thread") );
969 // ok only for the default one
973 // get system affinity mask first
974 HANDLE hProcess
= ::GetCurrentProcess();
975 DWORD_PTR dwProcMask
, dwSysMask
;
976 if ( ::GetProcessAffinityMask(hProcess
, &dwProcMask
, &dwSysMask
) == 0 )
978 wxLogLastError(_T("GetProcessAffinityMask"));
983 // how many CPUs have we got?
984 if ( dwSysMask
== 1 )
986 // don't bother with all this complicated stuff - on a single
987 // processor system it doesn't make much sense anyhow
991 // calculate the process mask: it's a bit vector with one bit per
992 // processor; we want to schedule the process to run on first level
997 if ( dwSysMask
& bit
)
999 // ok, we can set this bit
1002 // another process added
1005 // and that's enough
1014 // could we set all bits?
1017 wxLogDebug(_T("bad level %u in wxThread::SetConcurrency()"), level
);
1022 // set it: we can't link to SetProcessAffinityMask() because it doesn't
1023 // exist in Win9x, use RT binding instead
1025 typedef BOOL (WINAPI
*SETPROCESSAFFINITYMASK
)(HANDLE
, DWORD_PTR
);
1027 // can use static var because we're always in the main thread here
1028 static SETPROCESSAFFINITYMASK pfnSetProcessAffinityMask
= NULL
;
1030 if ( !pfnSetProcessAffinityMask
)
1032 HMODULE hModKernel
= ::LoadLibrary(_T("kernel32"));
1035 pfnSetProcessAffinityMask
= (SETPROCESSAFFINITYMASK
)
1036 ::GetProcAddress(hModKernel
, "SetProcessAffinityMask");
1039 // we've discovered a MT version of Win9x!
1040 wxASSERT_MSG( pfnSetProcessAffinityMask
,
1041 _T("this system has several CPUs but no SetProcessAffinityMask function?") );
1044 if ( !pfnSetProcessAffinityMask
)
1046 // msg given above - do it only once
1050 if ( pfnSetProcessAffinityMask(hProcess
, dwProcMask
) == 0 )
1052 wxLogLastError(_T("SetProcessAffinityMask"));
1058 #endif // __WXWINCE__/!__WXWINCE__
1064 wxThread::wxThread(wxThreadKind kind
)
1066 m_internal
= new wxThreadInternal(this);
1068 m_isDetached
= kind
== wxTHREAD_DETACHED
;
1071 wxThread::~wxThread()
1076 // create/start thread
1077 // -------------------
1079 wxThreadError
wxThread::Create(unsigned int stackSize
)
1081 wxCriticalSectionLocker
lock(m_critsect
);
1083 if ( !m_internal
->Create(this, stackSize
) )
1084 return wxTHREAD_NO_RESOURCE
;
1086 return wxTHREAD_NO_ERROR
;
1089 wxThreadError
wxThread::Run()
1091 wxCriticalSectionLocker
lock(m_critsect
);
1093 if ( m_internal
->GetState() != STATE_NEW
)
1095 // actually, it may be almost any state at all, not only STATE_RUNNING
1096 return wxTHREAD_RUNNING
;
1099 // the thread has just been created and is still suspended - let it run
1103 // suspend/resume thread
1104 // ---------------------
1106 wxThreadError
wxThread::Pause()
1108 wxCriticalSectionLocker
lock(m_critsect
);
1110 return m_internal
->Suspend() ? wxTHREAD_NO_ERROR
: wxTHREAD_MISC_ERROR
;
1113 wxThreadError
wxThread::Resume()
1115 wxCriticalSectionLocker
lock(m_critsect
);
1117 return m_internal
->Resume() ? wxTHREAD_NO_ERROR
: wxTHREAD_MISC_ERROR
;
1123 wxThread::ExitCode
wxThread::Wait()
1125 ExitCode rc
= wxUIntToPtr(THREAD_ERROR_EXIT
);
1127 // although under Windows we can wait for any thread, it's an error to
1128 // wait for a detached one in wxWin API
1129 wxCHECK_MSG( !IsDetached(), rc
,
1130 _T("wxThread::Wait(): can't wait for detached thread") );
1132 (void)m_internal
->WaitForTerminate(m_critsect
, &rc
);
1137 wxThreadError
wxThread::Delete(ExitCode
*pRc
)
1139 return m_internal
->WaitForTerminate(m_critsect
, pRc
, this);
1142 wxThreadError
wxThread::Kill()
1145 return wxTHREAD_NOT_RUNNING
;
1147 wxThreadError rc
= m_internal
->Kill();
1155 // update the status of the joinable thread
1156 wxCriticalSectionLocker
lock(m_critsect
);
1157 m_internal
->SetState(STATE_EXITED
);
1163 void wxThread::Exit(ExitCode status
)
1173 // update the status of the joinable thread
1174 wxCriticalSectionLocker
lock(m_critsect
);
1175 m_internal
->SetState(STATE_EXITED
);
1178 #ifdef wxUSE_BEGIN_THREAD
1179 _endthreadex(wxPtrToUInt(status
));
1181 ::ExitThread((DWORD
)status
);
1182 #endif // VC++/!VC++
1184 wxFAIL_MSG(wxT("Couldn't return from ExitThread()!"));
1190 void wxThread::SetPriority(unsigned int prio
)
1192 wxCriticalSectionLocker
lock(m_critsect
);
1194 m_internal
->SetPriority(prio
);
1197 unsigned int wxThread::GetPriority() const
1199 wxCriticalSectionLocker
lock((wxCriticalSection
&)m_critsect
); // const_cast
1201 return m_internal
->GetPriority();
1204 unsigned long wxThread::GetId() const
1206 wxCriticalSectionLocker
lock((wxCriticalSection
&)m_critsect
); // const_cast
1208 return (unsigned long)m_internal
->GetId();
1211 bool wxThread::IsRunning() const
1213 wxCriticalSectionLocker
lock((wxCriticalSection
&)m_critsect
); // const_cast
1215 return m_internal
->GetState() == STATE_RUNNING
;
1218 bool wxThread::IsAlive() const
1220 wxCriticalSectionLocker
lock((wxCriticalSection
&)m_critsect
); // const_cast
1222 return (m_internal
->GetState() == STATE_RUNNING
) ||
1223 (m_internal
->GetState() == STATE_PAUSED
);
1226 bool wxThread::IsPaused() const
1228 wxCriticalSectionLocker
lock((wxCriticalSection
&)m_critsect
); // const_cast
1230 return m_internal
->GetState() == STATE_PAUSED
;
1233 bool wxThread::TestDestroy()
1235 wxCriticalSectionLocker
lock((wxCriticalSection
&)m_critsect
); // const_cast
1237 return m_internal
->GetState() == STATE_CANCELED
;
1240 // ----------------------------------------------------------------------------
1241 // Automatic initialization for thread module
1242 // ----------------------------------------------------------------------------
1244 class wxThreadModule
: public wxModule
1247 virtual bool OnInit();
1248 virtual void OnExit();
1251 DECLARE_DYNAMIC_CLASS(wxThreadModule
)
1254 IMPLEMENT_DYNAMIC_CLASS(wxThreadModule
, wxModule
)
1256 bool wxThreadModule::OnInit()
1258 // allocate TLS index for storing the pointer to the current thread
1259 gs_tlsThisThread
= ::TlsAlloc();
1260 if ( gs_tlsThisThread
== 0xFFFFFFFF )
1262 // in normal circumstances it will only happen if all other
1263 // TLS_MINIMUM_AVAILABLE (>= 64) indices are already taken - in other
1264 // words, this should never happen
1265 wxLogSysError(_("Thread module initialization failed: impossible to allocate index in thread local storage"));
1270 // main thread doesn't have associated wxThread object, so store 0 in the
1272 if ( !::TlsSetValue(gs_tlsThisThread
, (LPVOID
)0) )
1274 ::TlsFree(gs_tlsThisThread
);
1275 gs_tlsThisThread
= 0xFFFFFFFF;
1277 wxLogSysError(_("Thread module initialization failed: can not store value in thread local storage"));
1282 gs_critsectWaitingForGui
= new wxCriticalSection();
1284 gs_critsectGui
= new wxCriticalSection();
1285 gs_critsectGui
->Enter();
1287 gs_critsectThreadDelete
= new wxCriticalSection
;
1289 // no error return for GetCurrentThreadId()
1290 gs_idMainThread
= ::GetCurrentThreadId();
1295 void wxThreadModule::OnExit()
1297 if ( !::TlsFree(gs_tlsThisThread
) )
1299 wxLogLastError(wxT("TlsFree failed."));
1302 delete gs_critsectThreadDelete
;
1303 gs_critsectThreadDelete
= NULL
;
1305 if ( gs_critsectGui
)
1307 gs_critsectGui
->Leave();
1308 delete gs_critsectGui
;
1309 gs_critsectGui
= NULL
;
1312 delete gs_critsectWaitingForGui
;
1313 gs_critsectWaitingForGui
= NULL
;
1316 // ----------------------------------------------------------------------------
1317 // under Windows, these functions are implemented using a critical section and
1318 // not a mutex, so the names are a bit confusing
1319 // ----------------------------------------------------------------------------
1321 void wxMutexGuiEnterImpl()
1323 // this would dead lock everything...
1324 wxASSERT_MSG( !wxThread::IsMain(),
1325 wxT("main thread doesn't want to block in wxMutexGuiEnter()!") );
1327 // the order in which we enter the critical sections here is crucial!!
1329 // set the flag telling to the main thread that we want to do some GUI
1331 wxCriticalSectionLocker
enter(*gs_critsectWaitingForGui
);
1333 gs_nWaitingForGui
++;
1336 wxWakeUpMainThread();
1338 // now we may block here because the main thread will soon let us in
1339 // (during the next iteration of OnIdle())
1340 gs_critsectGui
->Enter();
1343 void wxMutexGuiLeaveImpl()
1345 wxCriticalSectionLocker
enter(*gs_critsectWaitingForGui
);
1347 if ( wxThread::IsMain() )
1349 gs_bGuiOwnedByMainThread
= false;
1353 // decrement the number of threads waiting for GUI access now
1354 wxASSERT_MSG( gs_nWaitingForGui
> 0,
1355 wxT("calling wxMutexGuiLeave() without entering it first?") );
1357 gs_nWaitingForGui
--;
1359 wxWakeUpMainThread();
1362 gs_critsectGui
->Leave();
1365 void WXDLLIMPEXP_BASE
wxMutexGuiLeaveOrEnter()
1367 wxASSERT_MSG( wxThread::IsMain(),
1368 wxT("only main thread may call wxMutexGuiLeaveOrEnter()!") );
1370 wxCriticalSectionLocker
enter(*gs_critsectWaitingForGui
);
1372 if ( gs_nWaitingForGui
== 0 )
1374 // no threads are waiting for GUI - so we may acquire the lock without
1375 // any danger (but only if we don't already have it)
1376 if ( !wxGuiOwnedByMainThread() )
1378 gs_critsectGui
->Enter();
1380 gs_bGuiOwnedByMainThread
= true;
1382 //else: already have it, nothing to do
1386 // some threads are waiting, release the GUI lock if we have it
1387 if ( wxGuiOwnedByMainThread() )
1391 //else: some other worker thread is doing GUI
1395 bool WXDLLIMPEXP_BASE
wxGuiOwnedByMainThread()
1397 return gs_bGuiOwnedByMainThread
;
1400 // wake up the main thread if it's in ::GetMessage()
1401 void WXDLLIMPEXP_BASE
wxWakeUpMainThread()
1403 // sending any message would do - hopefully WM_NULL is harmless enough
1404 if ( !::PostThreadMessage(gs_idMainThread
, WM_NULL
, 0, 0) )
1406 // should never happen
1407 wxLogLastError(wxT("PostThreadMessage(WM_NULL)"));
1411 bool WXDLLIMPEXP_BASE
wxIsWaitingForThread()
1413 return gs_waitingForThread
;
1416 // ----------------------------------------------------------------------------
1417 // include common implementation code
1418 // ----------------------------------------------------------------------------
1420 #include "wx/thrimpl.cpp"
1422 #endif // wxUSE_THREADS