1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxThread (Posix) Implementation
4 // Author: Original from Wolfram Gloger/Guilhem Lavaux
8 // Copyright: (c) Wolfram Gloger (1996, 1997)
9 // Guilhem Lavaux (1998)
10 // Vadim Zeitlin (1999)
11 // Robert Roebling (1999)
12 // Licence: wxWindows licence
13 /////////////////////////////////////////////////////////////////////////////
15 // ============================================================================
17 // ============================================================================
19 // ----------------------------------------------------------------------------
21 // ----------------------------------------------------------------------------
24 #pragma implementation "thread.h"
31 #include "wx/thread.h"
32 #include "wx/module.h"
36 #include "wx/dynarray.h"
48 #ifdef HAVE_THR_SETCONCURRENCY
52 // we use wxFFile under Linux in GetCPUCount()
57 // ----------------------------------------------------------------------------
59 // ----------------------------------------------------------------------------
61 // the possible states of the thread and transitions from them
64 STATE_NEW
, // didn't start execution yet (=> RUNNING)
65 STATE_RUNNING
, // running (=> PAUSED or EXITED)
66 STATE_PAUSED
, // suspended (=> RUNNING or EXITED)
67 STATE_EXITED
// thread doesn't exist any more
70 // the exit value of a thread which has been cancelled
71 static const wxThread::ExitCode EXITCODE_CANCELLED
= (wxThread::ExitCode
)-1;
74 #define TRACE_THREADS _T("thread")
76 // ----------------------------------------------------------------------------
78 // ----------------------------------------------------------------------------
80 static void ScheduleThreadForDeletion();
81 static void DeleteThread(wxThread
*This
);
83 // ----------------------------------------------------------------------------
85 // ----------------------------------------------------------------------------
87 // same as wxMutexLocker but for "native" mutex
91 MutexLock(pthread_mutex_t
& mutex
)
94 if ( pthread_mutex_lock(m_mutex
) != 0 )
96 wxLogDebug(_T("pthread_mutex_lock() failed"));
102 if ( pthread_mutex_unlock(m_mutex
) != 0 )
104 wxLogDebug(_T("pthread_mutex_unlock() failed"));
109 pthread_mutex_t
*m_mutex
;
112 // ----------------------------------------------------------------------------
114 // ----------------------------------------------------------------------------
116 WX_DEFINE_ARRAY(wxThread
*, wxArrayThread
);
118 // -----------------------------------------------------------------------------
120 // -----------------------------------------------------------------------------
122 // we keep the list of all threads created by the application to be able to
123 // terminate them on exit if there are some left - otherwise the process would
125 static wxArrayThread gs_allThreads
;
127 // the id of the main thread
128 static pthread_t gs_tidMain
;
130 // the key for the pointer to the associated wxThread object
131 static pthread_key_t gs_keySelf
;
133 // the number of threads which are being deleted - the program won't exit
134 // until there are any left
135 static size_t gs_nThreadsBeingDeleted
= 0;
137 // a mutex to protect gs_nThreadsBeingDeleted
138 static pthread_mutex_t gs_mutexDeleteThread
;
140 // and a condition variable which will be signaled when all
141 // gs_nThreadsBeingDeleted will have been deleted
142 static wxCondition
*gs_condAllDeleted
= (wxCondition
*)NULL
;
145 // this mutex must be acquired before any call to a GUI function
146 static wxMutex
*gs_mutexGui
;
149 // ============================================================================
151 // ============================================================================
153 //--------------------------------------------------------------------
154 // wxMutex (Posix implementation)
155 //--------------------------------------------------------------------
157 class wxMutexInternal
160 pthread_mutex_t m_mutex
;
165 m_internal
= new wxMutexInternal
;
167 // support recursive locks like Win32, i.e. a thread can lock a mutex which
168 // it had itself already locked
170 // but initialization of recursive mutexes is non portable <sigh>, so try
172 #ifdef HAVE_PTHREAD_MUTEXATTR_T
173 pthread_mutexattr_t attr
;
174 pthread_mutexattr_init(&attr
);
175 pthread_mutexattr_settype(&attr
, PTHREAD_MUTEX_RECURSIVE
);
177 pthread_mutex_init(&(m_internal
->m_mutex
), &attr
);
178 #elif defined(HAVE_PTHREAD_RECURSIVE_MUTEX_INITIALIZER)
179 // we can use this only as initializer so we have to assign it first to a
180 // temp var - assigning directly to m_mutex wouldn't even compile
181 pthread_mutex_t mutex
= PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP
;
182 m_internal
->m_mutex
= mutex
;
183 #else // no recursive mutexes
184 pthread_mutex_init(&(m_internal
->m_mutex
), NULL
);
185 #endif // HAVE_PTHREAD_MUTEXATTR_T/...
193 wxLogDebug(wxT("Freeing a locked mutex (%d locks)"), m_locked
);
195 pthread_mutex_destroy( &(m_internal
->m_mutex
) );
199 wxMutexError
wxMutex::Lock()
201 int err
= pthread_mutex_lock( &(m_internal
->m_mutex
) );
204 wxLogDebug(wxT("Locking this mutex would lead to deadlock!"));
206 return wxMUTEX_DEAD_LOCK
;
211 return wxMUTEX_NO_ERROR
;
214 wxMutexError
wxMutex::TryLock()
221 int err
= pthread_mutex_trylock( &(m_internal
->m_mutex
) );
224 case EBUSY
: return wxMUTEX_BUSY
;
229 return wxMUTEX_NO_ERROR
;
232 wxMutexError
wxMutex::Unlock()
240 wxLogDebug(wxT("Unlocking not locked mutex."));
242 return wxMUTEX_UNLOCKED
;
245 pthread_mutex_unlock( &(m_internal
->m_mutex
) );
247 return wxMUTEX_NO_ERROR
;
250 //--------------------------------------------------------------------
251 // wxCondition (Posix implementation)
252 //--------------------------------------------------------------------
254 // The native POSIX condition variables are dumb: if the condition is signaled
255 // before another thread starts to wait on it, the signal is lost and so this
256 // other thread will be never woken up. It's much more convenient to us to
257 // remember that the condition was signaled and to return from Wait()
258 // immediately in this case (this is more like Win32 automatic event objects)
260 class wxConditionInternal
263 wxConditionInternal();
264 ~wxConditionInternal();
267 bool WaitWithTimeout(const timespec
* ts
);
277 bool m_wasSignaled
; // TRUE if condition was signaled while
278 // nobody waited for it
279 size_t m_nWaiters
; // TRUE if someone already waits for us
281 pthread_mutex_t m_mutexProtect
; // protects access to vars above
283 pthread_mutex_t m_mutex
; // the mutex used with the condition
284 pthread_cond_t m_condition
; // the condition itself
287 wxConditionInternal::wxConditionInternal()
289 m_wasSignaled
= FALSE
;
292 if ( pthread_cond_init(&m_condition
, (pthread_condattr_t
*)NULL
) != 0 )
294 // this is supposed to never happen
295 wxFAIL_MSG( _T("pthread_cond_init() failed") );
298 if ( pthread_mutex_init(&m_mutex
, (pthread_mutexattr_t
*)NULL
) != 0 ||
299 pthread_mutex_init(&m_mutexProtect
, NULL
) != 0 )
302 wxFAIL_MSG( _T("wxCondition: pthread_mutex_init() failed") );
305 // initially the mutex is locked, so no thread can Signal() or Broadcast()
306 // until another thread starts to Wait()
307 if ( pthread_mutex_lock(&m_mutex
) != 0 )
309 wxFAIL_MSG( _T("wxCondition: pthread_mutex_lock() failed") );
313 wxConditionInternal::~wxConditionInternal()
315 if ( pthread_cond_destroy( &m_condition
) != 0 )
317 wxLogDebug(_T("Failed to destroy condition variable (some "
318 "threads are probably still waiting on it?)"));
321 if ( pthread_mutex_unlock( &m_mutex
) != 0 )
323 wxLogDebug(_T("wxCondition: failed to unlock the mutex"));
326 if ( pthread_mutex_destroy( &m_mutex
) != 0 ||
327 pthread_mutex_destroy( &m_mutexProtect
) != 0 )
329 wxLogDebug(_T("Failed to destroy mutex (it is probably locked)"));
333 void wxConditionInternal::WaitDone()
335 MutexLock
lock(m_mutexProtect
);
337 m_wasSignaled
= FALSE
;
341 bool wxConditionInternal::ShouldWait()
343 MutexLock
lock(m_mutexProtect
);
347 // the condition was signaled before we started to wait, reset the
349 m_wasSignaled
= FALSE
;
354 // we start to wait for it
360 bool wxConditionInternal::HasWaiters()
362 MutexLock
lock(m_mutexProtect
);
366 // someone waits for us, signal the condition normally
370 // nobody waits for us and may be never will - so just remember that the
371 // condition was signaled and don't do anything else
372 m_wasSignaled
= TRUE
;
377 void wxConditionInternal::Wait()
381 if ( pthread_cond_wait( &m_condition
, &m_mutex
) != 0 )
383 // not supposed to ever happen
384 wxFAIL_MSG( _T("pthread_cond_wait() failed") );
391 bool wxConditionInternal::WaitWithTimeout(const timespec
* ts
)
397 switch ( pthread_cond_timedwait( &m_condition
, &m_mutex
, ts
) )
400 // condition signaled
405 wxLogDebug(_T("pthread_cond_timedwait() failed"));
411 // wait interrupted or timeout elapsed
417 // the condition had already been signaled before
426 void wxConditionInternal::Signal()
430 MutexLock
lock(m_mutex
);
432 if ( pthread_cond_signal( &m_condition
) != 0 )
434 // shouldn't ever happen
435 wxFAIL_MSG(_T("pthread_cond_signal() failed"));
440 void wxConditionInternal::Broadcast()
444 MutexLock
lock(m_mutex
);
446 if ( pthread_cond_broadcast( &m_condition
) != 0 )
448 // shouldn't ever happen
449 wxFAIL_MSG(_T("pthread_cond_broadcast() failed"));
454 wxCondition::wxCondition()
456 m_internal
= new wxConditionInternal
;
459 wxCondition::~wxCondition()
464 void wxCondition::Wait()
469 bool wxCondition::Wait(unsigned long sec
, unsigned long nsec
)
473 tspec
.tv_sec
= time(0L) + sec
; // FIXME is time(0) correct here?
474 tspec
.tv_nsec
= nsec
;
476 return m_internal
->WaitWithTimeout(&tspec
);
479 void wxCondition::Signal()
481 m_internal
->Signal();
484 void wxCondition::Broadcast()
486 m_internal
->Broadcast();
489 //--------------------------------------------------------------------
490 // wxThread (Posix implementation)
491 //--------------------------------------------------------------------
493 // the thread callback functions must have the C linkage
497 #if HAVE_THREAD_CLEANUP_FUNCTIONS
498 // thread exit function
499 void wxPthreadCleanup(void *ptr
);
500 #endif // HAVE_THREAD_CLEANUP_FUNCTIONS
502 void *wxPthreadStart(void *ptr
);
506 class wxThreadInternal
512 // thread entry function
513 static void *PthreadStart(wxThread
*thread
);
518 // ask the thread to terminate
520 // wake up threads waiting for our termination
522 // wake up threads waiting for our start
523 void SignalRun() { m_condRun
.Signal(); }
524 // go to sleep until Resume() is called
531 int GetPriority() const { return m_prio
; }
532 void SetPriority(int prio
) { m_prio
= prio
; }
534 wxThreadState
GetState() const { return m_state
; }
535 void SetState(wxThreadState state
) { m_state
= state
; }
537 pthread_t
GetId() const { return m_threadId
; }
538 pthread_t
*GetIdPtr() { return &m_threadId
; }
540 void SetCancelFlag() { m_cancelled
= TRUE
; }
541 bool WasCancelled() const { return m_cancelled
; }
543 void SetExitCode(wxThread::ExitCode exitcode
) { m_exitcode
= exitcode
; }
544 wxThread::ExitCode
GetExitCode() const { return m_exitcode
; }
547 void SetReallyPaused(bool paused
) { m_isPaused
= paused
; }
548 bool IsReallyPaused() const { return m_isPaused
; }
550 // tell the thread that it is a detached one
553 m_shouldBeJoined
= m_shouldBroadcast
= FALSE
;
556 // but even detached threads need to notifyus about their termination
557 // sometimes - tell the thread that it should do it
558 void Notify() { m_shouldBroadcast
= TRUE
; }
560 #if HAVE_THREAD_CLEANUP_FUNCTIONS
561 // this is used by wxPthreadCleanup() only
562 static void Cleanup(wxThread
*thread
);
563 #endif // HAVE_THREAD_CLEANUP_FUNCTIONS
566 pthread_t m_threadId
; // id of the thread
567 wxThreadState m_state
; // see wxThreadState enum
568 int m_prio
; // in wxWindows units: from 0 to 100
570 // this flag is set when the thread should terminate
573 // this flag is set when the thread is blocking on m_condSuspend
576 // the thread exit code - only used for joinable (!detached) threads and
577 // is only valid after the thread termination
578 wxThread::ExitCode m_exitcode
;
580 // many threads may call Wait(), but only one of them should call
581 // pthread_join(), so we have to keep track of this
582 wxCriticalSection m_csJoinFlag
;
583 bool m_shouldBeJoined
;
584 bool m_shouldBroadcast
;
587 // VZ: it's possible that we might do with less than three different
588 // condition objects - for example, m_condRun and m_condEnd a priori
589 // won't be used in the same time. But for now I prefer this may be a
590 // bit less efficient but safer solution of having distinct condition
591 // variables for each purpose.
593 // this condition is signaled by Run() and the threads Entry() is not
594 // called before it is done
595 wxCondition m_condRun
;
597 // this one is signaled when the thread should resume after having been
599 wxCondition m_condSuspend
;
601 // finally this one is signalled when the thread exits
602 wxCondition m_condEnd
;
605 // ----------------------------------------------------------------------------
606 // thread startup and exit functions
607 // ----------------------------------------------------------------------------
609 void *wxPthreadStart(void *ptr
)
611 return wxThreadInternal::PthreadStart((wxThread
*)ptr
);
614 void *wxThreadInternal::PthreadStart(wxThread
*thread
)
616 wxThreadInternal
*pthread
= thread
->m_internal
;
618 // associate the thread pointer with the newly created thread so that
619 // wxThread::This() will work
620 int rc
= pthread_setspecific(gs_keySelf
, thread
);
623 wxLogSysError(rc
, _("Cannot start thread: error writing TLS"));
628 // have to declare this before pthread_cleanup_push() which defines a
632 #if HAVE_THREAD_CLEANUP_FUNCTIONS
633 // install the cleanup handler which will be called if the thread is
635 pthread_cleanup_push(wxPthreadCleanup
, thread
);
636 #endif // HAVE_THREAD_CLEANUP_FUNCTIONS
638 // wait for the condition to be signaled from Run()
639 pthread
->m_condRun
.Wait();
641 // test whether we should run the run at all - may be it was deleted
642 // before it started to Run()?
644 wxCriticalSectionLocker
lock(thread
->m_critsect
);
646 dontRunAtAll
= pthread
->GetState() == STATE_NEW
&&
647 pthread
->WasCancelled();
652 // call the main entry
653 pthread
->m_exitcode
= thread
->Entry();
655 wxLogTrace(TRACE_THREADS
, _T("Thread %ld left its Entry()."),
659 wxCriticalSectionLocker
lock(thread
->m_critsect
);
661 wxLogTrace(TRACE_THREADS
, _T("Thread %ld changes state to EXITED."),
664 // change the state of the thread to "exited" so that
665 // wxPthreadCleanup handler won't do anything from now (if it's
666 // called before we do pthread_cleanup_pop below)
667 pthread
->SetState(STATE_EXITED
);
671 // NB: at least under Linux, pthread_cleanup_push/pop are macros and pop
672 // contains the matching '}' for the '{' in push, so they must be used
673 // in the same block!
674 #if HAVE_THREAD_CLEANUP_FUNCTIONS
675 // remove the cleanup handler without executing it
676 pthread_cleanup_pop(FALSE
);
677 #endif // HAVE_THREAD_CLEANUP_FUNCTIONS
683 return EXITCODE_CANCELLED
;
687 // terminate the thread
688 thread
->Exit(pthread
->m_exitcode
);
690 wxFAIL_MSG(wxT("wxThread::Exit() can't return."));
696 #if HAVE_THREAD_CLEANUP_FUNCTIONS
698 // this handler is called when the thread is cancelled
699 extern "C" void wxPthreadCleanup(void *ptr
)
701 wxThreadInternal::Cleanup((wxThread
*)ptr
);
704 void wxThreadInternal::Cleanup(wxThread
*thread
)
707 wxCriticalSectionLocker
lock(thread
->m_critsect
);
708 if ( thread
->m_internal
->GetState() == STATE_EXITED
)
710 // thread is already considered as finished.
715 // exit the thread gracefully
716 thread
->Exit(EXITCODE_CANCELLED
);
719 #endif // HAVE_THREAD_CLEANUP_FUNCTIONS
721 // ----------------------------------------------------------------------------
723 // ----------------------------------------------------------------------------
725 wxThreadInternal::wxThreadInternal()
729 m_prio
= WXTHREAD_DEFAULT_PRIORITY
;
733 // set to TRUE only when the thread starts waiting on m_condSuspend
736 // defaults for joinable threads
737 m_shouldBeJoined
= TRUE
;
738 m_shouldBroadcast
= TRUE
;
739 m_isDetached
= FALSE
;
742 wxThreadInternal::~wxThreadInternal()
746 wxThreadError
wxThreadInternal::Run()
748 wxCHECK_MSG( GetState() == STATE_NEW
, wxTHREAD_RUNNING
,
749 wxT("thread may only be started once after Create()") );
753 SetState(STATE_RUNNING
);
755 return wxTHREAD_NO_ERROR
;
758 void wxThreadInternal::Wait()
760 // if the thread we're waiting for is waiting for the GUI mutex, we will
761 // deadlock so make sure we release it temporarily
762 if ( wxThread::IsMain() )
765 bool isDetached
= m_isDetached
;
767 long long id
= (long long)GetId();
769 long id
= (long)GetId();
771 wxLogTrace(TRACE_THREADS
, _T("Starting to wait for thread %ld to exit."),
774 // wait until the thread terminates (we're blocking in _another_ thread,
778 wxLogTrace(TRACE_THREADS
, _T("Finished waiting for thread %ld."), id
);
780 // we can't use any member variables any more if the thread is detached
781 // because it could be already deleted
784 // to avoid memory leaks we should call pthread_join(), but it must
786 wxCriticalSectionLocker
lock(m_csJoinFlag
);
788 if ( m_shouldBeJoined
)
790 // FIXME shouldn't we set cancellation type to DISABLED here? If
791 // we're cancelled inside pthread_join(), things will almost
792 // certainly break - but if we disable the cancellation, we
794 if ( pthread_join((pthread_t
)id
, &m_exitcode
) != 0 )
796 wxLogError(_("Failed to join a thread, potential memory leak "
797 "detected - please restart the program"));
800 m_shouldBeJoined
= FALSE
;
804 // reacquire GUI mutex
805 if ( wxThread::IsMain() )
809 void wxThreadInternal::SignalExit()
811 wxLogTrace(TRACE_THREADS
, _T("Thread %ld about to exit."), GetId());
813 SetState(STATE_EXITED
);
815 // wake up all the threads waiting for our termination - if there are any
816 if ( m_shouldBroadcast
)
818 wxLogTrace(TRACE_THREADS
, _T("Thread %ld signals end condition."),
821 m_condEnd
.Broadcast();
825 void wxThreadInternal::Pause()
827 // the state is set from the thread which pauses us first, this function
828 // is called later so the state should have been already set
829 wxCHECK_RET( m_state
== STATE_PAUSED
,
830 wxT("thread must first be paused with wxThread::Pause().") );
832 wxLogTrace(TRACE_THREADS
, _T("Thread %ld goes to sleep."), GetId());
834 // wait until the condition is signaled from Resume()
835 m_condSuspend
.Wait();
838 void wxThreadInternal::Resume()
840 wxCHECK_RET( m_state
== STATE_PAUSED
,
841 wxT("can't resume thread which is not suspended.") );
843 // the thread might be not actually paused yet - if there were no call to
844 // TestDestroy() since the last call to Pause() for example
845 if ( IsReallyPaused() )
847 wxLogTrace(TRACE_THREADS
, _T("Waking up thread %ld"), GetId());
850 m_condSuspend
.Signal();
853 SetReallyPaused(FALSE
);
857 wxLogTrace(TRACE_THREADS
, _T("Thread %ld is not yet really paused"),
861 SetState(STATE_RUNNING
);
864 // -----------------------------------------------------------------------------
865 // wxThread static functions
866 // -----------------------------------------------------------------------------
868 wxThread
*wxThread::This()
870 return (wxThread
*)pthread_getspecific(gs_keySelf
);
873 bool wxThread::IsMain()
875 return (bool)pthread_equal(pthread_self(), gs_tidMain
);
878 void wxThread::Yield()
880 #ifdef HAVE_SCHED_YIELD
885 void wxThread::Sleep(unsigned long milliseconds
)
887 wxUsleep(milliseconds
);
890 int wxThread::GetCPUCount()
892 #if defined(__LINUX__) && wxUSE_FFILE
893 // read from proc (can't use wxTextFile here because it's a special file:
894 // it has 0 size but still can be read from)
897 wxFFile
file(_T("/proc/cpuinfo"));
898 if ( file
.IsOpened() )
900 // slurp the whole file
902 if ( file
.ReadAll(&s
) )
904 // (ab)use Replace() to find the number of "processor" strings
905 size_t count
= s
.Replace(_T("processor"), _T(""));
911 wxLogDebug(_T("failed to parse /proc/cpuinfo"));
915 wxLogDebug(_T("failed to read /proc/cpuinfo"));
918 #elif defined(_SC_NPROCESSORS_ONLN)
919 // this works for Solaris
920 int rc
= sysconf(_SC_NPROCESSORS_ONLN
);
925 #endif // different ways to get number of CPUs
932 // VMS is a 64 bit system and threads have 64 bit pointers.
933 // ??? also needed for other systems????
934 unsigned long long wxThread::GetCurrentId()
936 return (unsigned long long)pthread_self();
938 unsigned long wxThread::GetCurrentId()
940 return (unsigned long)pthread_self();
944 bool wxThread::SetConcurrency(size_t level
)
946 #ifdef HAVE_THR_SETCONCURRENCY
947 int rc
= thr_setconcurrency(level
);
950 wxLogSysError(rc
, _T("thr_setconcurrency() failed"));
954 #else // !HAVE_THR_SETCONCURRENCY
955 // ok only for the default value
957 #endif // HAVE_THR_SETCONCURRENCY/!HAVE_THR_SETCONCURRENCY
960 // -----------------------------------------------------------------------------
962 // -----------------------------------------------------------------------------
964 wxThread::wxThread(wxThreadKind kind
)
966 // add this thread to the global list of all threads
967 gs_allThreads
.Add(this);
969 m_internal
= new wxThreadInternal();
971 m_isDetached
= kind
== wxTHREAD_DETACHED
;
974 wxThreadError
wxThread::Create(unsigned int WXUNUSED(stackSize
))
976 if ( m_internal
->GetState() != STATE_NEW
)
978 // don't recreate thread
979 return wxTHREAD_RUNNING
;
982 // set up the thread attribute: right now, we only set thread priority
984 pthread_attr_init(&attr
);
986 #ifdef HAVE_THREAD_PRIORITY_FUNCTIONS
988 if ( pthread_attr_getschedpolicy(&attr
, &policy
) != 0 )
990 wxLogError(_("Cannot retrieve thread scheduling policy."));
994 /* the pthread.h contains too many spaces. This is a work-around */
995 # undef sched_get_priority_max
996 #undef sched_get_priority_min
997 #define sched_get_priority_max(_pol_) \
998 (_pol_ == SCHED_OTHER ? PRI_FG_MAX_NP : PRI_FIFO_MAX)
999 #define sched_get_priority_min(_pol_) \
1000 (_pol_ == SCHED_OTHER ? PRI_FG_MIN_NP : PRI_FIFO_MIN)
1003 int max_prio
= sched_get_priority_max(policy
),
1004 min_prio
= sched_get_priority_min(policy
),
1005 prio
= m_internal
->GetPriority();
1007 if ( min_prio
== -1 || max_prio
== -1 )
1009 wxLogError(_("Cannot get priority range for scheduling policy %d."),
1012 else if ( max_prio
== min_prio
)
1014 if ( prio
!= WXTHREAD_DEFAULT_PRIORITY
)
1016 // notify the programmer that this doesn't work here
1017 wxLogWarning(_("Thread priority setting is ignored."));
1019 //else: we have default priority, so don't complain
1021 // anyhow, don't do anything because priority is just ignored
1025 struct sched_param sp
;
1026 if ( pthread_attr_getschedparam(&attr
, &sp
) != 0 )
1028 wxFAIL_MSG(_T("pthread_attr_getschedparam() failed"));
1031 sp
.sched_priority
= min_prio
+ (prio
*(max_prio
- min_prio
))/100;
1033 if ( pthread_attr_setschedparam(&attr
, &sp
) != 0 )
1035 wxFAIL_MSG(_T("pthread_attr_setschedparam(priority) failed"));
1038 #endif // HAVE_THREAD_PRIORITY_FUNCTIONS
1040 #ifdef HAVE_PTHREAD_ATTR_SETSCOPE
1041 // this will make the threads created by this process really concurrent
1042 if ( pthread_attr_setscope(&attr
, PTHREAD_SCOPE_SYSTEM
) != 0 )
1044 wxFAIL_MSG(_T("pthread_attr_setscope(PTHREAD_SCOPE_SYSTEM) failed"));
1046 #endif // HAVE_PTHREAD_ATTR_SETSCOPE
1048 // VZ: assume that this one is always available (it's rather fundamental),
1049 // if this function is ever missing we should try to use
1050 // pthread_detach() instead (after thread creation)
1053 if ( pthread_attr_setdetachstate(&attr
, PTHREAD_CREATE_DETACHED
) != 0 )
1055 wxFAIL_MSG(_T("pthread_attr_setdetachstate(DETACHED) failed"));
1058 // never try to join detached threads
1059 m_internal
->Detach();
1061 //else: threads are created joinable by default, it's ok
1063 // create the new OS thread object
1064 int rc
= pthread_create
1066 m_internal
->GetIdPtr(),
1072 if ( pthread_attr_destroy(&attr
) != 0 )
1074 wxFAIL_MSG(_T("pthread_attr_destroy() failed"));
1079 m_internal
->SetState(STATE_EXITED
);
1081 return wxTHREAD_NO_RESOURCE
;
1084 return wxTHREAD_NO_ERROR
;
1087 wxThreadError
wxThread::Run()
1089 wxCriticalSectionLocker
lock(m_critsect
);
1091 wxCHECK_MSG( m_internal
->GetId(), wxTHREAD_MISC_ERROR
,
1092 wxT("must call wxThread::Create() first") );
1094 return m_internal
->Run();
1097 // -----------------------------------------------------------------------------
1099 // -----------------------------------------------------------------------------
1101 void wxThread::SetPriority(unsigned int prio
)
1103 wxCHECK_RET( ((int)WXTHREAD_MIN_PRIORITY
<= (int)prio
) &&
1104 ((int)prio
<= (int)WXTHREAD_MAX_PRIORITY
),
1105 wxT("invalid thread priority") );
1107 wxCriticalSectionLocker
lock(m_critsect
);
1109 switch ( m_internal
->GetState() )
1112 // thread not yet started, priority will be set when it is
1113 m_internal
->SetPriority(prio
);
1118 #ifdef HAVE_THREAD_PRIORITY_FUNCTIONS
1120 struct sched_param sparam
;
1121 sparam
.sched_priority
= prio
;
1123 if ( pthread_setschedparam(m_internal
->GetId(),
1124 SCHED_OTHER
, &sparam
) != 0 )
1126 wxLogError(_("Failed to set thread priority %d."), prio
);
1129 #endif // HAVE_THREAD_PRIORITY_FUNCTIONS
1134 wxFAIL_MSG(wxT("impossible to set thread priority in this state"));
1138 unsigned int wxThread::GetPriority() const
1140 wxCriticalSectionLocker
lock((wxCriticalSection
&)m_critsect
);
1142 return m_internal
->GetPriority();
1146 unsigned long long wxThread::GetId() const
1148 return (unsigned long long)m_internal
->GetId();
1150 unsigned long wxThread::GetId() const
1152 return (unsigned long)m_internal
->GetId();
1156 // -----------------------------------------------------------------------------
1158 // -----------------------------------------------------------------------------
1160 wxThreadError
wxThread::Pause()
1162 wxCHECK_MSG( This() != this, wxTHREAD_MISC_ERROR
,
1163 _T("a thread can't pause itself") );
1165 wxCriticalSectionLocker
lock(m_critsect
);
1167 if ( m_internal
->GetState() != STATE_RUNNING
)
1169 wxLogDebug(wxT("Can't pause thread which is not running."));
1171 return wxTHREAD_NOT_RUNNING
;
1174 wxLogTrace(TRACE_THREADS
, _T("Asking thread %ld to pause."),
1177 // just set a flag, the thread will be really paused only during the next
1178 // call to TestDestroy()
1179 m_internal
->SetState(STATE_PAUSED
);
1181 return wxTHREAD_NO_ERROR
;
1184 wxThreadError
wxThread::Resume()
1186 wxCHECK_MSG( This() != this, wxTHREAD_MISC_ERROR
,
1187 _T("a thread can't resume itself") );
1189 wxCriticalSectionLocker
lock(m_critsect
);
1191 wxThreadState state
= m_internal
->GetState();
1196 wxLogTrace(TRACE_THREADS
, _T("Thread %ld suspended, resuming."),
1199 m_internal
->Resume();
1201 return wxTHREAD_NO_ERROR
;
1204 wxLogTrace(TRACE_THREADS
, _T("Thread %ld exited, won't resume."),
1206 return wxTHREAD_NO_ERROR
;
1209 wxLogDebug(_T("Attempt to resume a thread which is not paused."));
1211 return wxTHREAD_MISC_ERROR
;
1215 // -----------------------------------------------------------------------------
1217 // -----------------------------------------------------------------------------
1219 wxThread::ExitCode
wxThread::Wait()
1221 wxCHECK_MSG( This() != this, (ExitCode
)-1,
1222 _T("a thread can't wait for itself") );
1224 wxCHECK_MSG( !m_isDetached
, (ExitCode
)-1,
1225 _T("can't wait for detached thread") );
1229 return m_internal
->GetExitCode();
1232 wxThreadError
wxThread::Delete(ExitCode
*rc
)
1234 wxCHECK_MSG( This() != this, wxTHREAD_MISC_ERROR
,
1235 _T("a thread can't delete itself") );
1238 wxThreadState state
= m_internal
->GetState();
1240 // ask the thread to stop
1241 m_internal
->SetCancelFlag();
1245 // detached threads won't broadcast about their termination by default
1246 // because usually nobody waits for them - but here we do, so ask the
1247 // thread to notify us
1248 m_internal
->Notify();
1256 // we need to wake up the thread so that PthreadStart() will
1257 // terminate - right now it's blocking on m_condRun
1258 m_internal
->SignalRun();
1267 // resume the thread first (don't call our Resume() because this
1268 // would dead lock when it tries to enter m_critsect)
1269 m_internal
->Resume();
1274 // wait until the thread stops
1279 wxASSERT_MSG( !m_isDetached
,
1280 _T("no return code for detached threads") );
1282 // if it's a joinable thread, it's not deleted yet
1283 *rc
= m_internal
->GetExitCode();
1287 return wxTHREAD_NO_ERROR
;
1290 wxThreadError
wxThread::Kill()
1292 wxCHECK_MSG( This() != this, wxTHREAD_MISC_ERROR
,
1293 _T("a thread can't kill itself") );
1295 switch ( m_internal
->GetState() )
1299 return wxTHREAD_NOT_RUNNING
;
1302 // resume the thread first
1308 #ifdef HAVE_PTHREAD_CANCEL
1309 if ( pthread_cancel(m_internal
->GetId()) != 0 )
1312 wxLogError(_("Failed to terminate a thread."));
1314 return wxTHREAD_MISC_ERROR
;
1319 // if we use cleanup function, this will be done from
1320 // wxPthreadCleanup()
1321 #if !HAVE_THREAD_CLEANUP_FUNCTIONS
1322 ScheduleThreadForDeletion();
1324 // don't call OnExit() here, it can only be called in the
1325 // threads context and we're in the context of another thread
1328 #endif // HAVE_THREAD_CLEANUP_FUNCTIONS
1332 m_internal
->SetExitCode(EXITCODE_CANCELLED
);
1335 return wxTHREAD_NO_ERROR
;
1339 void wxThread::Exit(ExitCode status
)
1341 wxASSERT_MSG( This() == this,
1342 _T("wxThread::Exit() can only be called in the "
1343 "context of the same thread") );
1345 // from the moment we call OnExit(), the main program may terminate at any
1346 // moment, so mark this thread as being already in process of being
1347 // deleted or wxThreadModule::OnExit() will try to delete it again
1348 ScheduleThreadForDeletion();
1350 // don't enter m_critsect before calling OnExit() because the user code
1351 // might deadlock if, for example, it signals a condition in OnExit() (a
1352 // common case) while the main thread calls any of functions entering
1353 // m_critsect on us (almost all of them do)
1356 // now do enter it because SignalExit() will change our state
1359 // next wake up the threads waiting for us (OTOH, this function won't return
1360 // until someone waited for us!)
1361 m_internal
->SignalExit();
1363 // leave the critical section before entering the dtor which tries to
1367 // delete C++ thread object if this is a detached thread - user is
1368 // responsible for doing this for joinable ones
1371 // FIXME I'm feeling bad about it - what if another thread function is
1372 // called (in another thread context) now? It will try to access
1373 // half destroyed object which will probably result in something
1374 // very bad - but we can't protect this by a crit section unless
1375 // we make it a global object, but this would mean that we can
1376 // only call one thread function at a time :-(
1380 // terminate the thread (pthread_exit() never returns)
1381 pthread_exit(status
);
1383 wxFAIL_MSG(_T("pthread_exit() failed"));
1386 // also test whether we were paused
1387 bool wxThread::TestDestroy()
1389 wxASSERT_MSG( This() == this,
1390 _T("wxThread::TestDestroy() can only be called in the "
1391 "context of the same thread") );
1395 if ( m_internal
->GetState() == STATE_PAUSED
)
1397 m_internal
->SetReallyPaused(TRUE
);
1399 // leave the crit section or the other threads will stop too if they
1400 // try to call any of (seemingly harmless) IsXXX() functions while we
1404 m_internal
->Pause();
1408 // thread wasn't requested to pause, nothing to do
1412 return m_internal
->WasCancelled();
1415 wxThread::~wxThread()
1420 // check that the thread either exited or couldn't be created
1421 if ( m_internal
->GetState() != STATE_EXITED
&&
1422 m_internal
->GetState() != STATE_NEW
)
1424 wxLogDebug(_T("The thread %ld is being destroyed although it is still "
1425 "running! The application may crash."), GetId());
1429 #endif // __WXDEBUG__
1433 // remove this thread from the global array
1434 gs_allThreads
.Remove(this);
1436 // detached thread will decrement this counter in DeleteThread(), but it
1437 // is not called for the joinable threads, so do it here
1438 if ( !m_isDetached
)
1440 MutexLock
lock(gs_mutexDeleteThread
);
1441 gs_nThreadsBeingDeleted
--;
1443 wxLogTrace(TRACE_THREADS
, _T("%u scheduled for deletion threads left."),
1444 gs_nThreadsBeingDeleted
- 1);
1448 // -----------------------------------------------------------------------------
1450 // -----------------------------------------------------------------------------
1452 bool wxThread::IsRunning() const
1454 wxCriticalSectionLocker
lock((wxCriticalSection
&)m_critsect
);
1456 return m_internal
->GetState() == STATE_RUNNING
;
1459 bool wxThread::IsAlive() const
1461 wxCriticalSectionLocker
lock((wxCriticalSection
&)m_critsect
);
1463 switch ( m_internal
->GetState() )
1474 bool wxThread::IsPaused() const
1476 wxCriticalSectionLocker
lock((wxCriticalSection
&)m_critsect
);
1478 return (m_internal
->GetState() == STATE_PAUSED
);
1481 //--------------------------------------------------------------------
1483 //--------------------------------------------------------------------
1485 class wxThreadModule
: public wxModule
1488 virtual bool OnInit();
1489 virtual void OnExit();
1492 DECLARE_DYNAMIC_CLASS(wxThreadModule
)
1495 IMPLEMENT_DYNAMIC_CLASS(wxThreadModule
, wxModule
)
1497 bool wxThreadModule::OnInit()
1499 int rc
= pthread_key_create(&gs_keySelf
, NULL
/* dtor function */);
1502 wxLogSysError(rc
, _("Thread module initialization failed: "
1503 "failed to create thread key"));
1508 gs_tidMain
= pthread_self();
1511 gs_mutexGui
= new wxMutex();
1513 gs_mutexGui
->Lock();
1516 // under Solaris we get a warning from CC when using
1517 // PTHREAD_MUTEX_INITIALIZER, so do it dynamically
1518 pthread_mutex_init(&gs_mutexDeleteThread
, NULL
);
1523 void wxThreadModule::OnExit()
1525 wxASSERT_MSG( wxThread::IsMain(), wxT("only main thread can be here") );
1527 // are there any threads left which are being deleted right now?
1528 size_t nThreadsBeingDeleted
;
1530 MutexLock
lock(gs_mutexDeleteThread
);
1531 nThreadsBeingDeleted
= gs_nThreadsBeingDeleted
;
1534 if ( nThreadsBeingDeleted
> 0 )
1536 wxLogTrace(TRACE_THREADS
, _T("Waiting for %u threads to disappear"),
1537 nThreadsBeingDeleted
);
1539 // have to wait until all of them disappear
1540 gs_condAllDeleted
->Wait();
1543 // terminate any threads left
1544 size_t count
= gs_allThreads
.GetCount();
1547 wxLogDebug(wxT("%u threads were not terminated by the application."),
1551 for ( size_t n
= 0u; n
< count
; n
++ )
1553 // Delete calls the destructor which removes the current entry. We
1554 // should only delete the first one each time.
1555 gs_allThreads
[0]->Delete();
1559 // destroy GUI mutex
1560 gs_mutexGui
->Unlock();
1565 // and free TLD slot
1566 (void)pthread_key_delete(gs_keySelf
);
1569 // ----------------------------------------------------------------------------
1571 // ----------------------------------------------------------------------------
1573 static void ScheduleThreadForDeletion()
1575 MutexLock
lock(gs_mutexDeleteThread
);
1577 if ( gs_nThreadsBeingDeleted
== 0 )
1579 gs_condAllDeleted
= new wxCondition
;
1582 gs_nThreadsBeingDeleted
++;
1584 wxLogTrace(TRACE_THREADS
, _T("%u thread%s waiting to be deleted"),
1585 gs_nThreadsBeingDeleted
,
1586 gs_nThreadsBeingDeleted
== 1 ? "" : "s");
1589 static void DeleteThread(wxThread
*This
)
1591 // gs_mutexDeleteThread should be unlocked before signalling the condition
1592 // or wxThreadModule::OnExit() would deadlock
1594 MutexLock
lock(gs_mutexDeleteThread
);
1596 wxLogTrace(TRACE_THREADS
, _T("Thread %ld auto deletes."), This
->GetId());
1600 wxCHECK_RET( gs_nThreadsBeingDeleted
> 0,
1601 _T("no threads scheduled for deletion, yet we delete "
1605 wxLogTrace(TRACE_THREADS
, _T("%u scheduled for deletion threads left."),
1606 gs_nThreadsBeingDeleted
- 1);
1608 if ( !--gs_nThreadsBeingDeleted
)
1610 // no more threads left, signal it
1611 gs_condAllDeleted
->Signal();
1613 delete gs_condAllDeleted
;
1614 gs_condAllDeleted
= (wxCondition
*)NULL
;
1618 void wxMutexGuiEnter()
1621 gs_mutexGui
->Lock();
1625 void wxMutexGuiLeave()
1628 gs_mutexGui
->Unlock();