]> git.saurik.com Git - wxWidgets.git/blob - src/unix/threadpsx.cpp
a1764a30c38cc1647896f21ddd50a4324f88ceb1
[wxWidgets.git] / src / unix / threadpsx.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: threadpsx.cpp
3 // Purpose: wxThread (Posix) Implementation
4 // Author: Original from Wolfram Gloger/Guilhem Lavaux
5 // Modified by:
6 // Created: 04/22/98
7 // RCS-ID: $Id$
8 // Copyright: (c) Wolfram Gloger (1996, 1997)
9 // Guilhem Lavaux (1998)
10 // Vadim Zeitlin (1999)
11 // Robert Roebling (1999)
12 // Licence: wxWindows licence
13 /////////////////////////////////////////////////////////////////////////////
14
15 // ============================================================================
16 // declaration
17 // ============================================================================
18
19 // ----------------------------------------------------------------------------
20 // headers
21 // ----------------------------------------------------------------------------
22
23 #ifdef __GNUG__
24 #pragma implementation "thread.h"
25 #endif
26
27 // With simple makefiles, we must ignore the file body if not using
28 // threads.
29 #include "wx/setup.h"
30
31 #if wxUSE_THREADS
32
33 #include "wx/thread.h"
34 #include "wx/module.h"
35 #include "wx/utils.h"
36 #include "wx/log.h"
37 #include "wx/intl.h"
38 #include "wx/dynarray.h"
39
40 #include <stdio.h>
41 #include <unistd.h>
42 #include <pthread.h>
43 #include <errno.h>
44 #include <time.h>
45
46 #if HAVE_SCHED_H
47 #include <sched.h>
48 #endif
49
50 #ifdef __WXGTK12__
51 #include "gtk/gtk.h"
52 #endif
53
54 // ----------------------------------------------------------------------------
55 // constants
56 // ----------------------------------------------------------------------------
57
58 // the possible states of the thread and transitions from them
59 enum wxThreadState
60 {
61 STATE_NEW, // didn't start execution yet (=> RUNNING)
62 STATE_RUNNING, // running (=> PAUSED or EXITED)
63 STATE_PAUSED, // suspended (=> RUNNING or EXITED)
64 STATE_EXITED // thread doesn't exist any more
65 };
66
67 // ----------------------------------------------------------------------------
68 // types
69 // ----------------------------------------------------------------------------
70
71 WX_DEFINE_ARRAY(wxThread *, wxArrayThread);
72
73 // -----------------------------------------------------------------------------
74 // global data
75 // -----------------------------------------------------------------------------
76
77 // we keep the list of all threads created by the application to be able to
78 // terminate them on exit if there are some left - otherwise the process would
79 // be left in memory
80 static wxArrayThread gs_allThreads;
81
82 // the id of the main thread
83 static pthread_t gs_tidMain;
84
85 // the key for the pointer to the associated wxThread object
86 static pthread_key_t gs_keySelf;
87
88 #ifndef __WXGTK12__
89 // this mutex must be acquired before any call to a GUI function
90 static wxMutex *gs_mutexGui;
91 #endif
92
93 // ============================================================================
94 // implementation
95 // ============================================================================
96
97 //--------------------------------------------------------------------
98 // wxMutex (Posix implementation)
99 //--------------------------------------------------------------------
100
101 class wxMutexInternal
102 {
103 public:
104 pthread_mutex_t p_mutex;
105 };
106
107 wxMutex::wxMutex()
108 {
109 p_internal = new wxMutexInternal;
110 pthread_mutex_init( &(p_internal->p_mutex), (const pthread_mutexattr_t*) NULL );
111 m_locked = 0;
112 }
113
114 wxMutex::~wxMutex()
115 {
116 if (m_locked > 0)
117 wxLogDebug(_T("Freeing a locked mutex (%d locks)"), m_locked);
118
119 pthread_mutex_destroy( &(p_internal->p_mutex) );
120 delete p_internal;
121 }
122
123 wxMutexError wxMutex::Lock()
124 {
125 int err = pthread_mutex_lock( &(p_internal->p_mutex) );
126 if (err == EDEADLK)
127 {
128 wxLogDebug(_T("Locking this mutex would lead to deadlock!"));
129
130 return wxMUTEX_DEAD_LOCK;
131 }
132
133 m_locked++;
134
135 return wxMUTEX_NO_ERROR;
136 }
137
138 wxMutexError wxMutex::TryLock()
139 {
140 if (m_locked)
141 {
142 return wxMUTEX_BUSY;
143 }
144
145 int err = pthread_mutex_trylock( &(p_internal->p_mutex) );
146 switch (err)
147 {
148 case EBUSY: return wxMUTEX_BUSY;
149 }
150
151 m_locked++;
152
153 return wxMUTEX_NO_ERROR;
154 }
155
156 wxMutexError wxMutex::Unlock()
157 {
158 if (m_locked > 0)
159 {
160 m_locked--;
161 }
162 else
163 {
164 wxLogDebug(_T("Unlocking not locked mutex."));
165
166 return wxMUTEX_UNLOCKED;
167 }
168
169 pthread_mutex_unlock( &(p_internal->p_mutex) );
170
171 return wxMUTEX_NO_ERROR;
172 }
173
174 //--------------------------------------------------------------------
175 // wxCondition (Posix implementation)
176 //--------------------------------------------------------------------
177
178 class wxConditionInternal
179 {
180 public:
181 pthread_cond_t p_condition;
182 };
183
184 wxCondition::wxCondition()
185 {
186 p_internal = new wxConditionInternal;
187 pthread_cond_init( &(p_internal->p_condition), (const pthread_condattr_t *) NULL );
188 }
189
190 wxCondition::~wxCondition()
191 {
192 pthread_cond_destroy( &(p_internal->p_condition) );
193
194 delete p_internal;
195 }
196
197 void wxCondition::Wait(wxMutex& mutex)
198 {
199 pthread_cond_wait( &(p_internal->p_condition), &(mutex.p_internal->p_mutex) );
200 }
201
202 bool wxCondition::Wait(wxMutex& mutex, unsigned long sec, unsigned long nsec)
203 {
204 struct timespec tspec;
205
206 tspec.tv_sec = time(0L)+sec;
207 tspec.tv_nsec = nsec;
208 return (pthread_cond_timedwait(&(p_internal->p_condition), &(mutex.p_internal->p_mutex), &tspec) != ETIMEDOUT);
209 }
210
211 void wxCondition::Signal()
212 {
213 pthread_cond_signal( &(p_internal->p_condition) );
214 }
215
216 void wxCondition::Broadcast()
217 {
218 pthread_cond_broadcast( &(p_internal->p_condition) );
219 }
220
221 //--------------------------------------------------------------------
222 // wxThread (Posix implementation)
223 //--------------------------------------------------------------------
224
225 class wxThreadInternal
226 {
227 public:
228 wxThreadInternal();
229 ~wxThreadInternal();
230
231 // thread entry function
232 static void *PthreadStart(void *ptr);
233
234 #if HAVE_THREAD_CLEANUP_FUNCTIONS
235 // thread exit function
236 static void PthreadCleanup(void *ptr);
237 #endif
238
239 // thread actions
240 // start the thread
241 wxThreadError Run();
242 // ask the thread to terminate
243 void Wait();
244 // wake up threads waiting for our termination
245 void SignalExit();
246 // go to sleep until Resume() is called
247 void Pause();
248 // resume the thread
249 void Resume();
250
251 // accessors
252 // priority
253 int GetPriority() const { return m_prio; }
254 void SetPriority(int prio) { m_prio = prio; }
255 // state
256 wxThreadState GetState() const { return m_state; }
257 void SetState(wxThreadState state) { m_state = state; }
258 // id
259 pthread_t GetId() const { return m_threadId; }
260 pthread_t *GetIdPtr() { return &m_threadId; }
261 // "cancelled" flag
262 void SetCancelFlag() { m_cancelled = TRUE; }
263 bool WasCancelled() const { return m_cancelled; }
264
265 private:
266 pthread_t m_threadId; // id of the thread
267 wxThreadState m_state; // see wxThreadState enum
268 int m_prio; // in wxWindows units: from 0 to 100
269
270 // set when the thread should terminate
271 bool m_cancelled;
272
273 // this (mutex, cond) pair is used to synchronize the main thread and this
274 // thread in several situations:
275 // 1. The thread function blocks until condition is signaled by Run() when
276 // it's initially created - this allows thread creation in "suspended"
277 // state
278 // 2. The Delete() function blocks until the condition is signaled when the
279 // thread exits.
280 wxMutex m_mutex, m_end_mutex;
281 wxCondition m_cond;
282
283 // another (mutex, cond) pair for Pause()/Resume() usage
284 //
285 // VZ: it's possible that we might reuse the mutex and condition from above
286 // for this too, but as I'm not at all sure that it won't create subtle
287 // problems with race conditions between, say, Pause() and Delete() I
288 // prefer this may be a bit less efficient but much safer solution
289 wxMutex m_mutexSuspend;
290 wxCondition m_condSuspend;
291 };
292
293 void *wxThreadInternal::PthreadStart(void *ptr)
294 {
295 wxThread *thread = (wxThread *)ptr;
296 wxThreadInternal *pthread = thread->p_internal;
297 void *status;
298
299 int rc = pthread_setspecific(gs_keySelf, thread);
300 if ( rc != 0 )
301 {
302 wxLogSysError(rc, _("Cannot start thread: error writing TLS"));
303
304 return (void *)-1;
305 }
306 #if HAVE_THREAD_CLEANUP_FUNCTIONS
307 // Install the cleanup handler.
308 // pthread_cleanup_push(wxThreadInternal::PthreadCleanup, ptr);
309 #endif
310
311 // wait for the condition to be signaled from Run()
312 // mutex state: currently locked by the thread which created us
313 pthread->m_cond.Wait(pthread->m_mutex);
314 // mutex state: locked again on exit of Wait()
315
316 // call the main entry
317 status = thread->Entry();
318
319 #if HAVE_THREAD_CLEANUP_FUNCTIONS
320 // pthread_cleanup_pop(FALSE);
321 #endif
322
323 // terminate the thread
324 thread->Exit(status);
325
326 wxFAIL_MSG(_T("wxThread::Exit() can't return."));
327
328 return NULL;
329 }
330
331 #if HAVE_THREAD_CLEANUP_FUNCTIONS
332 // Only called when the thread is explicitely killed.
333
334 void wxThreadInternal::PthreadCleanup(void *ptr)
335 {
336 wxThread *thread = (wxThread *) ptr;
337
338 // The thread is already considered as finished.
339 if (thread->p_internal->GetState() == STATE_EXITED)
340 return;
341
342 // first call user-level clean up code
343 thread->OnExit();
344
345 // next wake up the threads waiting for us (OTOH, this function won't retur
346 // until someone waited for us!)
347 thread->p_internal->SetState(STATE_EXITED);
348
349 thread->p_internal->SignalExit();
350 }
351 #endif
352
353 wxThreadInternal::wxThreadInternal()
354 {
355 m_state = STATE_NEW;
356 m_cancelled = FALSE;
357
358 // this mutex is locked during almost all thread lifetime - it will only be
359 // unlocked in the very end
360 m_mutex.Lock();
361
362 // this mutex is used by wxThreadInternal::Wait() and by
363 // wxThreadInternal::SignalExit(). We don't use m_mutex because of a
364 // possible deadlock in either Wait() or SignalExit().
365 m_end_mutex.Lock();
366
367 // this mutex is used in Pause()/Resume() and is also locked all the time
368 // unless the thread is paused
369 m_mutexSuspend.Lock();
370 }
371
372 wxThreadInternal::~wxThreadInternal()
373 {
374 // GL: moved to SignalExit
375 // m_mutexSuspend.Unlock();
376
377 // note that m_mutex will be unlocked by the thread which waits for our
378 // termination
379
380 // m_end_mutex can be unlocked here.
381 m_end_mutex.Unlock();
382 }
383
384 wxThreadError wxThreadInternal::Run()
385 {
386 wxCHECK_MSG( GetState() == STATE_NEW, wxTHREAD_RUNNING,
387 _T("thread may only be started once after successful Create()") );
388
389 // the mutex was locked on Create(), so we will be able to lock it again
390 // only when the thread really starts executing and enters the wait -
391 // otherwise we might signal the condition before anybody is waiting for it
392 wxMutexLocker lock(m_mutex);
393 m_cond.Signal();
394
395 m_state = STATE_RUNNING;
396
397 return wxTHREAD_NO_ERROR;
398
399 // now the mutex is unlocked back - but just to allow Wait() function to
400 // terminate by relocking it, so the net result is that the worker thread
401 // starts executing and the mutex is still locked
402 }
403
404 void wxThreadInternal::Wait()
405 {
406 wxCHECK_RET( WasCancelled(), _T("thread should have been cancelled first") );
407
408 // if the thread we're waiting for is waiting for the GUI mutex, we will
409 // deadlock so make sure we release it temporarily
410 if ( wxThread::IsMain() )
411 wxMutexGuiLeave();
412
413 // entering Wait() releases the mutex thus allowing SignalExit() to acquire
414 // it and to signal us its termination
415 m_cond.Wait(m_end_mutex);
416
417 // mutex is still in the locked state - relocked on exit from Wait(), so
418 // unlock it - we don't need it any more, the thread has already terminated
419 m_end_mutex.Unlock();
420
421 // After that, we wait for the real end of the other thread.
422 pthread_join(GetId(), NULL);
423
424 // reacquire GUI mutex
425 if ( wxThread::IsMain() )
426 wxMutexGuiEnter();
427 }
428
429 void wxThreadInternal::SignalExit()
430 {
431 // GL: Unlock mutexSuspend here.
432 m_mutexSuspend.Unlock();
433
434 // as mutex is currently locked, this will block until some other thread
435 // (normally the same which created this one) unlocks it by entering Wait()
436 m_end_mutex.Lock();
437
438 // wake up all the threads waiting for our termination
439 m_cond.Broadcast();
440
441 // after this call mutex will be finally unlocked
442 m_end_mutex.Unlock();
443 }
444
445 void wxThreadInternal::Pause()
446 {
447 // the state is set from the thread which pauses us first, this function
448 // is called later so the state should have been already set
449 wxCHECK_RET( m_state == STATE_PAUSED,
450 _T("thread must first be paused with wxThread::Pause().") );
451
452 // don't pause the thread which is being terminated - this would lead to
453 // deadlock if the thread is paused after Delete() had called Resume() but
454 // before it had time to call Wait()
455 if ( WasCancelled() )
456 return;
457
458 // wait until the condition is signaled from Resume()
459 m_condSuspend.Wait(m_mutexSuspend);
460 }
461
462 void wxThreadInternal::Resume()
463 {
464 wxCHECK_RET( m_state == STATE_PAUSED,
465 _T("can't resume thread which is not suspended.") );
466
467 // we will be able to lock this mutex only when Pause() starts waiting
468 wxMutexLocker lock(m_mutexSuspend);
469 m_condSuspend.Signal();
470
471 SetState(STATE_RUNNING);
472 }
473
474 // -----------------------------------------------------------------------------
475 // static functions
476 // -----------------------------------------------------------------------------
477
478 wxThread *wxThread::This()
479 {
480 return (wxThread *)pthread_getspecific(gs_keySelf);
481 }
482
483 bool wxThread::IsMain()
484 {
485 return (bool)pthread_equal(pthread_self(), gs_tidMain);
486 }
487
488 void wxThread::Yield()
489 {
490 sched_yield();
491 }
492
493 void wxThread::Sleep(unsigned long milliseconds)
494 {
495 wxUsleep(milliseconds);
496 }
497
498 // -----------------------------------------------------------------------------
499 // creating thread
500 // -----------------------------------------------------------------------------
501
502 wxThread::wxThread()
503 {
504 // add this thread to the global list of all threads
505 gs_allThreads.Add(this);
506
507 p_internal = new wxThreadInternal();
508 }
509
510 wxThreadError wxThread::Create()
511 {
512 if (p_internal->GetState() != STATE_NEW)
513 return wxTHREAD_RUNNING;
514
515 // set up the thread attribute: right now, we only set thread priority
516 pthread_attr_t attr;
517 pthread_attr_init(&attr);
518
519 #ifdef HAVE_THREAD_PRIORITY_FUNCTIONS
520 int prio;
521 if ( pthread_attr_getschedpolicy(&attr, &prio) != 0 )
522 {
523 wxLogError(_("Cannot retrieve thread scheduling policy."));
524 }
525
526 int min_prio = sched_get_priority_min(prio),
527 max_prio = sched_get_priority_max(prio);
528
529 if ( min_prio == -1 || max_prio == -1 )
530 {
531 wxLogError(_("Cannot get priority range for scheduling policy %d."),
532 prio);
533 }
534 else
535 {
536 struct sched_param sp;
537 pthread_attr_getschedparam(&attr, &sp);
538 sp.sched_priority = min_prio +
539 (p_internal->GetPriority()*(max_prio-min_prio))/100;
540 pthread_attr_setschedparam(&attr, &sp);
541 }
542 #endif // HAVE_THREAD_PRIORITY_FUNCTIONS
543
544 #ifdef HAVE_PTHREAD_ATTR_SETSCOPE
545 // this will make the threads created by this process really concurrent
546 pthread_attr_setscope(&attr, PTHREAD_SCOPE_SYSTEM);
547 #endif // HAVE_PTHREAD_ATTR_SETSCOPE
548
549 // create the new OS thread object
550 int rc = pthread_create(p_internal->GetIdPtr(), &attr,
551 wxThreadInternal::PthreadStart, (void *)this);
552 pthread_attr_destroy(&attr);
553
554 if ( rc != 0 )
555 {
556 p_internal->SetState(STATE_EXITED);
557 return wxTHREAD_NO_RESOURCE;
558 }
559
560 return wxTHREAD_NO_ERROR;
561 }
562
563 wxThreadError wxThread::Run()
564 {
565 return p_internal->Run();
566 }
567
568 // -----------------------------------------------------------------------------
569 // misc accessors
570 // -----------------------------------------------------------------------------
571
572 void wxThread::SetPriority(unsigned int prio)
573 {
574 wxCHECK_RET( ((int)WXTHREAD_MIN_PRIORITY <= (int)prio) &&
575 ((int)prio <= (int)WXTHREAD_MAX_PRIORITY),
576 _T("invalid thread priority") );
577
578 wxCriticalSectionLocker lock(m_critsect);
579
580 switch ( p_internal->GetState() )
581 {
582 case STATE_NEW:
583 // thread not yet started, priority will be set when it is
584 p_internal->SetPriority(prio);
585 break;
586
587 case STATE_RUNNING:
588 case STATE_PAUSED:
589 #ifdef HAVE_THREAD_PRIORITY_FUNCTIONS
590 {
591 struct sched_param sparam;
592 sparam.sched_priority = prio;
593
594 if ( pthread_setschedparam(p_internal->GetId(),
595 SCHED_OTHER, &sparam) != 0 )
596 {
597 wxLogError(_("Failed to set thread priority %d."), prio);
598 }
599 }
600 #endif // HAVE_THREAD_PRIORITY_FUNCTIONS
601 break;
602
603 case STATE_EXITED:
604 default:
605 wxFAIL_MSG(_T("impossible to set thread priority in this state"));
606 }
607 }
608
609 unsigned int wxThread::GetPriority() const
610 {
611 wxCriticalSectionLocker lock((wxCriticalSection &)m_critsect);
612
613 return p_internal->GetPriority();
614 }
615
616 unsigned long wxThread::GetID() const
617 {
618 return (unsigned long)p_internal->GetId();
619 }
620
621 // -----------------------------------------------------------------------------
622 // pause/resume
623 // -----------------------------------------------------------------------------
624
625 wxThreadError wxThread::Pause()
626 {
627 wxCriticalSectionLocker lock(m_critsect);
628
629 if ( p_internal->GetState() != STATE_RUNNING )
630 {
631 wxLogDebug(_T("Can't pause thread which is not running."));
632
633 return wxTHREAD_NOT_RUNNING;
634 }
635
636 p_internal->SetState(STATE_PAUSED);
637
638 return wxTHREAD_NO_ERROR;
639 }
640
641 wxThreadError wxThread::Resume()
642 {
643 wxCriticalSectionLocker lock(m_critsect);
644
645 if ( p_internal->GetState() == STATE_PAUSED )
646 {
647 m_critsect.Leave();
648 p_internal->Resume();
649 m_critsect.Enter();
650
651 return wxTHREAD_NO_ERROR;
652 }
653 else
654 {
655 wxLogDebug(_T("Attempt to resume a thread which is not paused."));
656
657 return wxTHREAD_MISC_ERROR;
658 }
659 }
660
661 // -----------------------------------------------------------------------------
662 // exiting thread
663 // -----------------------------------------------------------------------------
664
665 wxThread::ExitCode wxThread::Delete()
666 {
667 m_critsect.Enter();
668 wxThreadState state = p_internal->GetState();
669
670 // ask the thread to stop
671 p_internal->SetCancelFlag();
672
673 m_critsect.Leave();
674
675 switch ( state )
676 {
677 case STATE_NEW:
678 case STATE_EXITED:
679 // nothing to do
680 break;
681
682 case STATE_PAUSED:
683 // resume the thread first
684 Resume();
685
686 // fall through
687
688 default:
689 // wait until the thread stops
690 p_internal->Wait();
691 }
692
693 return NULL;
694 }
695
696 wxThreadError wxThread::Kill()
697 {
698 switch ( p_internal->GetState() )
699 {
700 case STATE_NEW:
701 case STATE_EXITED:
702 return wxTHREAD_NOT_RUNNING;
703
704 default:
705 #ifdef HAVE_PTHREAD_CANCEL
706 if ( pthread_cancel(p_internal->GetId()) != 0 )
707 #endif
708 {
709 wxLogError(_("Failed to terminate a thread."));
710
711 return wxTHREAD_MISC_ERROR;
712 }
713
714 return wxTHREAD_NO_ERROR;
715 }
716 }
717
718 void wxThread::Exit(void *status)
719 {
720 // first call user-level clean up code
721 OnExit();
722
723 // next wake up the threads waiting for us (OTOH, this function won't return
724 // until someone waited for us!)
725 p_internal->SignalExit();
726
727 p_internal->SetState(STATE_EXITED);
728
729 // delete both C++ thread object and terminate the OS thread object
730 // GL: This is very ugly and buggy ...
731 // delete this;
732 pthread_exit(status);
733 }
734
735 // also test whether we were paused
736 bool wxThread::TestDestroy()
737 {
738 wxCriticalSectionLocker lock(m_critsect);
739
740 if ( p_internal->GetState() == STATE_PAUSED )
741 {
742 // leave the crit section or the other threads will stop too if they try
743 // to call any of (seemingly harmless) IsXXX() functions while we sleep
744 m_critsect.Leave();
745
746 p_internal->Pause();
747
748 // enter it back before it's finally left in lock object dtor
749 m_critsect.Enter();
750 }
751
752 return p_internal->WasCancelled();
753 }
754
755 wxThread::~wxThread()
756 {
757 // remove this thread from the global array
758 gs_allThreads.Remove(this);
759 }
760
761 // -----------------------------------------------------------------------------
762 // state tests
763 // -----------------------------------------------------------------------------
764
765 bool wxThread::IsRunning() const
766 {
767 wxCriticalSectionLocker lock((wxCriticalSection &)m_critsect);
768
769 return p_internal->GetState() == STATE_RUNNING;
770 }
771
772 bool wxThread::IsAlive() const
773 {
774 wxCriticalSectionLocker lock((wxCriticalSection&)m_critsect);
775
776 switch ( p_internal->GetState() )
777 {
778 case STATE_RUNNING:
779 case STATE_PAUSED:
780 return TRUE;
781
782 default:
783 return FALSE;
784 }
785 }
786
787 bool wxThread::IsPaused() const
788 {
789 wxCriticalSectionLocker lock((wxCriticalSection&)m_critsect);
790
791 return (p_internal->GetState() == STATE_PAUSED);
792 }
793
794 //--------------------------------------------------------------------
795 // wxThreadModule
796 //--------------------------------------------------------------------
797
798 class wxThreadModule : public wxModule
799 {
800 public:
801 virtual bool OnInit();
802 virtual void OnExit();
803
804 private:
805 DECLARE_DYNAMIC_CLASS(wxThreadModule)
806 };
807
808 IMPLEMENT_DYNAMIC_CLASS(wxThreadModule, wxModule)
809
810 bool wxThreadModule::OnInit()
811 {
812 int rc = pthread_key_create(&gs_keySelf, NULL /* dtor function */);
813 if ( rc != 0 )
814 {
815 wxLogSysError(rc, _("Thread module initialization failed: "
816 "failed to create thread key"));
817
818 return FALSE;
819 }
820
821 #ifndef __WXGTK12__
822 gs_mutexGui = new wxMutex();
823 #endif
824
825 gs_tidMain = pthread_self();
826
827 #ifndef __WXGTK12__
828 gs_mutexGui->Lock();
829 #endif
830
831 return TRUE;
832 }
833
834 void wxThreadModule::OnExit()
835 {
836 wxASSERT_MSG( wxThread::IsMain(), _T("only main thread can be here") );
837
838 // terminate any threads left
839 size_t count = gs_allThreads.GetCount();
840 if ( count != 0u )
841 wxLogDebug(_T("Some threads were not terminated by the application."));
842
843 for ( size_t n = 0u; n < count; n++ )
844 {
845 gs_allThreads[n]->Delete();
846 }
847
848 #ifndef __WXGTK12__
849 // destroy GUI mutex
850 gs_mutexGui->Unlock();
851
852 delete gs_mutexGui;
853 #endif
854
855 // and free TLD slot
856 (void)pthread_key_delete(gs_keySelf);
857 }
858
859 // ----------------------------------------------------------------------------
860 // global functions
861 // ----------------------------------------------------------------------------
862
863 void wxMutexGuiEnter()
864 {
865 #ifdef __WXGTK12__
866 gdk_threads_enter();
867 #else
868 gs_mutexGui->Lock();
869 #endif
870 }
871
872 void wxMutexGuiLeave()
873 {
874 #ifdef __WXGTK12__
875 gdk_threads_leave();
876 #else
877 gs_mutexGui->Unlock();
878 #endif
879 }
880
881 #endif
882 // wxUSE_THREADS