]> git.saurik.com Git - wxWidgets.git/blame - src/unix/threadpsx.cpp
Create temporary wxEventLoop in wxGenericProgressDialog if needed.
[wxWidgets.git] / src / unix / threadpsx.cpp
CommitLineData
518b5d2f 1/////////////////////////////////////////////////////////////////////////////
ad9835c9 2// Name: src/unix/threadpsx.cpp
518b5d2f
VZ
3// Purpose: wxThread (Posix) Implementation
4// Author: Original from Wolfram Gloger/Guilhem Lavaux
be809868 5// Modified by: K. S. Sreeram (2002): POSIXified wxCondition, added wxSemaphore
518b5d2f
VZ
6// Created: 04/22/98
7// RCS-ID: $Id$
8// Copyright: (c) Wolfram Gloger (1996, 1997)
9// Guilhem Lavaux (1998)
8d5eff60 10// Vadim Zeitlin (1999-2002)
518b5d2f 11// Robert Roebling (1999)
be809868 12// K. S. Sreeram (2002)
65571936 13// Licence: wxWindows licence
518b5d2f
VZ
14/////////////////////////////////////////////////////////////////////////////
15
16// ============================================================================
17// declaration
18// ============================================================================
19
20// ----------------------------------------------------------------------------
21// headers
22// ----------------------------------------------------------------------------
23
14f355c2
VS
24// for compilers that support precompilation, includes "wx.h".
25#include "wx/wxprec.h"
518b5d2f 26
7bcb11d3 27#if wxUSE_THREADS
518b5d2f 28
88a7a4e1 29#include "wx/thread.h"
79b7b95a 30#include "wx/except.h"
88a7a4e1 31
ad9835c9 32#ifndef WX_PRECOMP
79b7b95a 33 #include "wx/app.h"
ad9835c9 34 #include "wx/dynarray.h"
88a7a4e1 35 #include "wx/intl.h"
e4db172a 36 #include "wx/log.h"
de6185e2 37 #include "wx/utils.h"
c0badb70 38 #include "wx/timer.h"
bb90a3e6 39 #include "wx/stopwatch.h"
02761f6c 40 #include "wx/module.h"
ad9835c9
WS
41#endif
42
518b5d2f
VZ
43#include <stdio.h>
44#include <unistd.h>
45#include <pthread.h>
46#include <errno.h>
47#include <time.h>
feedacd8 48#include <sys/time.h> // needed for at least __QNX__
4f66d445 49#ifdef HAVE_SCHED_H
518b5d2f
VZ
50 #include <sched.h>
51#endif
52
ef8d96c2
VZ
53#ifdef HAVE_THR_SETCONCURRENCY
54 #include <thread.h>
55#endif
56
57// we use wxFFile under Linux in GetCPUCount()
58#ifdef __LINUX__
59 #include "wx/ffile.h"
feedacd8 60 #include <sys/resource.h> // for setpriority()
ef8d96c2
VZ
61#endif
62
35e9c131
VS
63#define THR_ID_CAST(id) (reinterpret_cast<void*>(id))
64#define THR_ID(thr) THR_ID_CAST((thr)->GetId())
ef4f69ec 65
518b5d2f
VZ
66// ----------------------------------------------------------------------------
67// constants
68// ----------------------------------------------------------------------------
69
882eefb1
VZ
70// the possible states of the thread and transitions from them
71enum wxThreadState
518b5d2f
VZ
72{
73 STATE_NEW, // didn't start execution yet (=> RUNNING)
882eefb1
VZ
74 STATE_RUNNING, // running (=> PAUSED or EXITED)
75 STATE_PAUSED, // suspended (=> RUNNING or EXITED)
76 STATE_EXITED // thread doesn't exist any more
518b5d2f
VZ
77};
78
9fc3ad34
VZ
79// the exit value of a thread which has been cancelled
80static const wxThread::ExitCode EXITCODE_CANCELLED = (wxThread::ExitCode)-1;
81
9e84b847 82// trace mask for wxThread operations
9a83f860 83#define TRACE_THREADS wxT("thread")
9fc3ad34 84
9e84b847 85// you can get additional debugging messages for the semaphore operations
9a83f860 86#define TRACE_SEMA wxT("semaphore")
9e84b847 87
9fc3ad34
VZ
88// ----------------------------------------------------------------------------
89// private functions
90// ----------------------------------------------------------------------------
91
92static void ScheduleThreadForDeletion();
93static void DeleteThread(wxThread *This);
94
882eefb1 95// ----------------------------------------------------------------------------
9e84b847 96// private classes
882eefb1
VZ
97// ----------------------------------------------------------------------------
98
9e84b847 99// an (non owning) array of pointers to threads
0d2c74c6 100WX_DEFINE_ARRAY_PTR(wxThread *, wxArrayThread);
518b5d2f 101
9e84b847
VZ
102// an entry for a thread we can wait for
103
518b5d2f
VZ
104// -----------------------------------------------------------------------------
105// global data
106// -----------------------------------------------------------------------------
107
108// we keep the list of all threads created by the application to be able to
109// terminate them on exit if there are some left - otherwise the process would
110// be left in memory
111static wxArrayThread gs_allThreads;
112
25b34b26
VZ
113// a mutex to protect gs_allThreads
114static wxMutex *gs_mutexAllThreads = NULL;
115
518b5d2f 116// the id of the main thread
f9226383
VZ
117//
118// we suppose that 0 is not a valid pthread_t value but in principle this might
119// be false (e.g. if it's a selector-like value), wxThread::IsMain() would need
120// to be updated in such case
121wxThreadIdType wxThread::ms_idMainThread = 0;
518b5d2f
VZ
122
123// the key for the pointer to the associated wxThread object
124static pthread_key_t gs_keySelf;
125
9fc3ad34
VZ
126// the number of threads which are being deleted - the program won't exit
127// until there are any left
128static size_t gs_nThreadsBeingDeleted = 0;
129
130// a mutex to protect gs_nThreadsBeingDeleted
d3b9f782 131static wxMutex *gs_mutexDeleteThread = NULL;
9fc3ad34
VZ
132
133// and a condition variable which will be signaled when all
134// gs_nThreadsBeingDeleted will have been deleted
d3b9f782 135static wxCondition *gs_condAllDeleted = NULL;
9fc3ad34 136
a94c4b85 137#ifndef __WXOSX__
c80217d1
VS
138// this mutex must be acquired before any call to a GUI function
139// (it's not inside #if wxUSE_GUI because this file is compiled as part
140// of wxBase)
141static wxMutex *gs_mutexGui = NULL;
a94c4b85 142#endif
518b5d2f 143
9e84b847
VZ
144// when we wait for a thread to exit, we're blocking on a condition which the
145// thread signals in its SignalExit() method -- but this condition can't be a
146// member of the thread itself as a detached thread may delete itself at any
147// moment and accessing the condition member of the thread after this would
148// result in a disaster
149//
150// so instead we maintain a global list of the structs below for the threads
151// we're interested in waiting on
152
518b5d2f 153// ============================================================================
8d5eff60 154// wxMutex implementation
518b5d2f
VZ
155// ============================================================================
156
8d5eff60
VZ
157// ----------------------------------------------------------------------------
158// wxMutexInternal
159// ----------------------------------------------------------------------------
518b5d2f 160
9e84b847
VZ
161// this is a simple wrapper around pthread_mutex_t which provides error
162// checking
518b5d2f
VZ
163class wxMutexInternal
164{
165public:
9e84b847 166 wxMutexInternal(wxMutexType mutexType);
8d5eff60
VZ
167 ~wxMutexInternal();
168
169 wxMutexError Lock();
696d13ee 170 wxMutexError Lock(unsigned long ms);
8d5eff60
VZ
171 wxMutexError TryLock();
172 wxMutexError Unlock();
173
9e84b847
VZ
174 bool IsOk() const { return m_isOk; }
175
696d13ee
VZ
176private:
177 // convert the result of pthread_mutex_[timed]lock() call to wx return code
178 wxMutexError HandleLockResult(int err);
179
8d5eff60 180private:
9fc3ad34 181 pthread_mutex_t m_mutex;
9e84b847 182 bool m_isOk;
375f364e
RR
183 wxMutexType m_type;
184 unsigned long m_owningThread;
be809868 185
9e84b847 186 // wxConditionInternal uses our m_mutex
be809868 187 friend class wxConditionInternal;
518b5d2f
VZ
188};
189
123dca7d
VZ
190#if defined(HAVE_PTHREAD_MUTEXATTR_T) && \
191 wxUSE_UNIX && !defined(HAVE_PTHREAD_MUTEXATTR_SETTYPE_DECL)
707a3782
VS
192// on some systems pthread_mutexattr_settype() is not in the headers (but it is
193// in the library, otherwise we wouldn't compile this code at all)
194extern "C" int pthread_mutexattr_settype(pthread_mutexattr_t *, int);
195#endif
196
9e84b847 197wxMutexInternal::wxMutexInternal(wxMutexType mutexType)
518b5d2f 198{
375f364e
RR
199 m_type = mutexType;
200 m_owningThread = 0;
201
9e84b847
VZ
202 int err;
203 switch ( mutexType )
204 {
205 case wxMUTEX_RECURSIVE:
206 // support recursive locks like Win32, i.e. a thread can lock a
207 // mutex which it had itself already locked
208 //
209 // unfortunately initialization of recursive mutexes is non
210 // portable, so try several methods
d9b9876f 211#ifdef HAVE_PTHREAD_MUTEXATTR_T
9e84b847
VZ
212 {
213 pthread_mutexattr_t attr;
214 pthread_mutexattr_init(&attr);
215 pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_RECURSIVE);
d9b9876f 216
9e84b847
VZ
217 err = pthread_mutex_init(&m_mutex, &attr);
218 }
d9b9876f 219#elif defined(HAVE_PTHREAD_RECURSIVE_MUTEX_INITIALIZER)
9e84b847
VZ
220 // we can use this only as initializer so we have to assign it
221 // first to a temp var - assigning directly to m_mutex wouldn't
222 // even compile
223 {
224 pthread_mutex_t mutex = PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP;
225 m_mutex = mutex;
226 }
d9b9876f 227#else // no recursive mutexes
9e84b847 228 err = EINVAL;
d9b9876f 229#endif // HAVE_PTHREAD_MUTEXATTR_T/...
9e84b847
VZ
230 break;
231
232 default:
9a83f860 233 wxFAIL_MSG( wxT("unknown mutex type") );
9e84b847
VZ
234 // fall through
235
236 case wxMUTEX_DEFAULT:
237 err = pthread_mutex_init(&m_mutex, NULL);
238 break;
239 }
240
241 m_isOk = err == 0;
242 if ( !m_isOk )
243 {
401eb3de 244 wxLogApiError( wxT("pthread_mutex_init()"), err);
9e84b847 245 }
8d5eff60
VZ
246}
247
248wxMutexInternal::~wxMutexInternal()
249{
9e84b847
VZ
250 if ( m_isOk )
251 {
252 int err = pthread_mutex_destroy(&m_mutex);
253 if ( err != 0 )
254 {
401eb3de 255 wxLogApiError( wxT("pthread_mutex_destroy()"), err);
9e84b847
VZ
256 }
257 }
8d5eff60
VZ
258}
259
260wxMutexError wxMutexInternal::Lock()
261{
375f364e
RR
262 if ((m_type == wxMUTEX_DEFAULT) && (m_owningThread != 0))
263 {
264 if (m_owningThread == wxThread::GetCurrentId())
265 return wxMUTEX_DEAD_LOCK;
266 }
122cf17b 267
696d13ee
VZ
268 return HandleLockResult(pthread_mutex_lock(&m_mutex));
269}
270
271wxMutexError wxMutexInternal::Lock(unsigned long ms)
272{
e55a667c 273#ifdef HAVE_PTHREAD_MUTEX_TIMEDLOCK
696d13ee
VZ
274 static const long MSEC_IN_SEC = 1000;
275 static const long NSEC_IN_MSEC = 1000000;
fd91cec1 276 static const long NSEC_IN_USEC = 1000;
696d13ee
VZ
277 static const long NSEC_IN_SEC = MSEC_IN_SEC * NSEC_IN_MSEC;
278
279 time_t seconds = ms/MSEC_IN_SEC;
280 long nanoseconds = (ms % MSEC_IN_SEC) * NSEC_IN_MSEC;
281 timespec ts = { 0, 0 };
282
fd91cec1
VZ
283 // normally we should use clock_gettime(CLOCK_REALTIME) here but this
284 // function is in librt and we don't link with it currently, so use
285 // gettimeofday() instead -- if it turns out that this is really too
286 // imprecise, we should modify configure to check if clock_gettime() is
287 // available and whether it requires -lrt and use it instead
288#if 0
696d13ee
VZ
289 if ( clock_gettime(CLOCK_REALTIME, &ts) == 0 )
290 {
696d13ee 291 }
fd91cec1
VZ
292#else
293 struct timeval tv;
294 if ( wxGetTimeOfDay(&tv) != -1 )
295 {
296 ts.tv_sec = tv.tv_sec;
297 ts.tv_nsec = tv.tv_usec*NSEC_IN_USEC;
298 }
299#endif
696d13ee
VZ
300 else // fall back on system timer
301 {
fd91cec1
VZ
302 ts.tv_sec = time(NULL);
303 }
304
305 ts.tv_sec += seconds;
306 ts.tv_nsec += nanoseconds;
307 if ( ts.tv_nsec > NSEC_IN_SEC )
308 {
309 ts.tv_sec += 1;
310 ts.tv_nsec -= NSEC_IN_SEC;
696d13ee
VZ
311 }
312
313 return HandleLockResult(pthread_mutex_timedlock(&m_mutex, &ts));
e55a667c
VZ
314#else // !HAVE_PTHREAD_MUTEX_TIMEDLOCK
315 wxUnusedVar(ms);
316
317 return wxMUTEX_MISC_ERROR;
318#endif // HAVE_PTHREAD_MUTEX_TIMEDLOCK/!HAVE_PTHREAD_MUTEX_TIMEDLOCK
696d13ee
VZ
319}
320
321wxMutexError wxMutexInternal::HandleLockResult(int err)
322{
375f364e
RR
323 // wxPrintf( "err %d\n", err );
324
8d5eff60
VZ
325 switch ( err )
326 {
327 case EDEADLK:
9e84b847
VZ
328 // only error checking mutexes return this value and so it's an
329 // unexpected situation -- hence use assert, not wxLogDebug
9a83f860 330 wxFAIL_MSG( wxT("mutex deadlock prevented") );
8d5eff60
VZ
331 return wxMUTEX_DEAD_LOCK;
332
8d5eff60 333 case EINVAL:
9a83f860 334 wxLogDebug(wxT("pthread_mutex_[timed]lock(): mutex not initialized"));
9e84b847 335 break;
8d5eff60 336
696d13ee
VZ
337 case ETIMEDOUT:
338 return wxMUTEX_TIMEOUT;
339
8d5eff60 340 case 0:
375f364e
RR
341 if (m_type == wxMUTEX_DEFAULT)
342 m_owningThread = wxThread::GetCurrentId();
8d5eff60 343 return wxMUTEX_NO_ERROR;
9e84b847
VZ
344
345 default:
9a83f860 346 wxLogApiError(wxT("pthread_mutex_[timed]lock()"), err);
8d5eff60 347 }
9e84b847
VZ
348
349 return wxMUTEX_MISC_ERROR;
8d5eff60
VZ
350}
351
696d13ee 352
8d5eff60
VZ
353wxMutexError wxMutexInternal::TryLock()
354{
355 int err = pthread_mutex_trylock(&m_mutex);
356 switch ( err )
357 {
358 case EBUSY:
9e84b847
VZ
359 // not an error: mutex is already locked, but we're prepared for
360 // this
8d5eff60
VZ
361 return wxMUTEX_BUSY;
362
8d5eff60 363 case EINVAL:
9a83f860 364 wxLogDebug(wxT("pthread_mutex_trylock(): mutex not initialized."));
9e84b847 365 break;
8d5eff60
VZ
366
367 case 0:
375f364e
RR
368 if (m_type == wxMUTEX_DEFAULT)
369 m_owningThread = wxThread::GetCurrentId();
8d5eff60 370 return wxMUTEX_NO_ERROR;
9e84b847
VZ
371
372 default:
9a83f860 373 wxLogApiError(wxT("pthread_mutex_trylock()"), err);
8d5eff60 374 }
9e84b847
VZ
375
376 return wxMUTEX_MISC_ERROR;
8d5eff60
VZ
377}
378
379wxMutexError wxMutexInternal::Unlock()
380{
375f364e 381 m_owningThread = 0;
122cf17b 382
8d5eff60
VZ
383 int err = pthread_mutex_unlock(&m_mutex);
384 switch ( err )
385 {
386 case EPERM:
387 // we don't own the mutex
388 return wxMUTEX_UNLOCKED;
389
8d5eff60 390 case EINVAL:
9a83f860 391 wxLogDebug(wxT("pthread_mutex_unlock(): mutex not initialized."));
9e84b847 392 break;
8d5eff60
VZ
393
394 case 0:
395 return wxMUTEX_NO_ERROR;
518b5d2f 396
9e84b847 397 default:
9a83f860 398 wxLogApiError(wxT("pthread_mutex_unlock()"), err);
518b5d2f
VZ
399 }
400
9e84b847 401 return wxMUTEX_MISC_ERROR;
518b5d2f
VZ
402}
403
be809868 404// ===========================================================================
8d5eff60 405// wxCondition implementation
be809868 406// ===========================================================================
8d5eff60 407
be809868 408// ---------------------------------------------------------------------------
8d5eff60 409// wxConditionInternal
be809868 410// ---------------------------------------------------------------------------
518b5d2f 411
9e84b847
VZ
412// this is a wrapper around pthread_cond_t associated with a wxMutex (and hence
413// with a pthread_mutex_t)
518b5d2f
VZ
414class wxConditionInternal
415{
416public:
c112e100 417 wxConditionInternal(wxMutex& mutex);
9fc3ad34
VZ
418 ~wxConditionInternal();
419
9e84b847 420 bool IsOk() const { return m_isOk && m_mutex.IsOk(); }
4c460b34 421
9e84b847
VZ
422 wxCondError Wait();
423 wxCondError WaitTimeout(unsigned long milliseconds);
547b93ab 424
9e84b847
VZ
425 wxCondError Signal();
426 wxCondError Broadcast();
4c460b34 427
be809868 428private:
c112e100 429 // get the POSIX mutex associated with us
9e84b847 430 pthread_mutex_t *GetPMutex() const { return &m_mutex.m_internal->m_mutex; }
518b5d2f 431
c112e100 432 wxMutex& m_mutex;
be809868 433 pthread_cond_t m_cond;
9e84b847
VZ
434
435 bool m_isOk;
8d5eff60 436};
547b93ab 437
c112e100
VZ
438wxConditionInternal::wxConditionInternal(wxMutex& mutex)
439 : m_mutex(mutex)
9fc3ad34 440{
9e84b847 441 int err = pthread_cond_init(&m_cond, NULL /* default attributes */);
9fc3ad34 442
9e84b847 443 m_isOk = err == 0;
9fc3ad34 444
9e84b847 445 if ( !m_isOk )
9fc3ad34 446 {
9a83f860 447 wxLogApiError(wxT("pthread_cond_init()"), err);
9fc3ad34
VZ
448 }
449}
450
9e84b847 451wxConditionInternal::~wxConditionInternal()
4c460b34 452{
9e84b847 453 if ( m_isOk )
c112e100 454 {
9e84b847
VZ
455 int err = pthread_cond_destroy(&m_cond);
456 if ( err != 0 )
457 {
9a83f860 458 wxLogApiError(wxT("pthread_cond_destroy()"), err);
9e84b847 459 }
c112e100 460 }
be809868 461}
4c460b34 462
9e84b847 463wxCondError wxConditionInternal::Wait()
be809868 464{
9e84b847
VZ
465 int err = pthread_cond_wait(&m_cond, GetPMutex());
466 if ( err != 0 )
467 {
9a83f860 468 wxLogApiError(wxT("pthread_cond_wait()"), err);
4c460b34 469
9e84b847 470 return wxCOND_MISC_ERROR;
be809868 471 }
4c460b34 472
9e84b847 473 return wxCOND_NO_ERROR;
be809868 474}
60ce696e 475
9e84b847 476wxCondError wxConditionInternal::WaitTimeout(unsigned long milliseconds)
be809868 477{
be809868 478 wxLongLong curtime = wxGetLocalTimeMillis();
9e84b847 479 curtime += milliseconds;
be809868
VZ
480 wxLongLong temp = curtime / 1000;
481 int sec = temp.GetLo();
9e84b847 482 temp *= 1000;
be809868
VZ
483 temp = curtime - temp;
484 int millis = temp.GetLo();
485
486 timespec tspec;
487
488 tspec.tv_sec = sec;
489 tspec.tv_nsec = millis * 1000L * 1000L;
4c460b34 490
9e84b847
VZ
491 int err = pthread_cond_timedwait( &m_cond, GetPMutex(), &tspec );
492 switch ( err )
493 {
494 case ETIMEDOUT:
495 return wxCOND_TIMEOUT;
496
497 case 0:
498 return wxCOND_NO_ERROR;
499
500 default:
9a83f860 501 wxLogApiError(wxT("pthread_cond_timedwait()"), err);
9e84b847
VZ
502 }
503
504 return wxCOND_MISC_ERROR;
9fc3ad34
VZ
505}
506
9e84b847 507wxCondError wxConditionInternal::Signal()
9fc3ad34 508{
9e84b847
VZ
509 int err = pthread_cond_signal(&m_cond);
510 if ( err != 0 )
511 {
9a83f860 512 wxLogApiError(wxT("pthread_cond_signal()"), err);
9e84b847
VZ
513
514 return wxCOND_MISC_ERROR;
515 }
516
517 return wxCOND_NO_ERROR;
be809868 518}
547b93ab 519
9e84b847 520wxCondError wxConditionInternal::Broadcast()
be809868 521{
9e84b847
VZ
522 int err = pthread_cond_broadcast(&m_cond);
523 if ( err != 0 )
524 {
9a83f860 525 wxLogApiError(wxT("pthread_cond_broadcast()"), err);
9e84b847
VZ
526
527 return wxCOND_MISC_ERROR;
528 }
529
530 return wxCOND_NO_ERROR;
be809868
VZ
531}
532
533// ===========================================================================
534// wxSemaphore implementation
535// ===========================================================================
9fc3ad34 536
be809868
VZ
537// ---------------------------------------------------------------------------
538// wxSemaphoreInternal
539// ---------------------------------------------------------------------------
540
9e84b847
VZ
541// we implement the semaphores using mutexes and conditions instead of using
542// the sem_xxx() POSIX functions because they're not widely available and also
543// because it's impossible to implement WaitTimeout() using them
be809868
VZ
544class wxSemaphoreInternal
545{
546public:
9e84b847 547 wxSemaphoreInternal(int initialcount, int maxcount);
be809868 548
9e84b847 549 bool IsOk() const { return m_isOk; }
be809868 550
9e84b847
VZ
551 wxSemaError Wait();
552 wxSemaError TryWait();
553 wxSemaError WaitTimeout(unsigned long milliseconds);
be809868 554
9e84b847 555 wxSemaError Post();
be809868
VZ
556
557private:
558 wxMutex m_mutex;
559 wxCondition m_cond;
560
9e84b847
VZ
561 size_t m_count,
562 m_maxcount;
563
564 bool m_isOk;
be809868
VZ
565};
566
9e84b847 567wxSemaphoreInternal::wxSemaphoreInternal(int initialcount, int maxcount)
c112e100 568 : m_cond(m_mutex)
be809868
VZ
569{
570
9e84b847
VZ
571 if ( (initialcount < 0 || maxcount < 0) ||
572 ((maxcount > 0) && (initialcount > maxcount)) )
573 {
9a83f860 574 wxFAIL_MSG( wxT("wxSemaphore: invalid initial or maximal count") );
9e84b847 575
ad9835c9 576 m_isOk = false;
9e84b847
VZ
577 }
578 else
be809868 579 {
9e84b847
VZ
580 m_maxcount = (size_t)maxcount;
581 m_count = (size_t)initialcount;
547b93ab 582 }
547b93ab 583
9e84b847 584 m_isOk = m_mutex.IsOk() && m_cond.IsOk();
be809868 585}
547b93ab 586
9e84b847 587wxSemaError wxSemaphoreInternal::Wait()
be809868 588{
cd10339a 589 wxMutexLocker locker(m_mutex);
60ce696e 590
9e84b847 591 while ( m_count == 0 )
9fc3ad34 592 {
9e84b847 593 wxLogTrace(TRACE_SEMA,
9a83f860 594 wxT("Thread %p waiting for semaphore to become signalled"),
35e9c131 595 THR_ID_CAST(wxThread::GetCurrentId()));
9e84b847
VZ
596
597 if ( m_cond.Wait() != wxCOND_NO_ERROR )
598 return wxSEMA_MISC_ERROR;
599
600 wxLogTrace(TRACE_SEMA,
9a83f860 601 wxT("Thread %p finished waiting for semaphore, count = %lu"),
35e9c131 602 THR_ID_CAST(wxThread::GetCurrentId()), (unsigned long)m_count);
9fc3ad34 603 }
be809868 604
9e84b847
VZ
605 m_count--;
606
607 return wxSEMA_NO_ERROR;
be809868
VZ
608}
609
9e84b847 610wxSemaError wxSemaphoreInternal::TryWait()
be809868 611{
cd10339a 612 wxMutexLocker locker(m_mutex);
be809868 613
9e84b847
VZ
614 if ( m_count == 0 )
615 return wxSEMA_BUSY;
be809868 616
9e84b847 617 m_count--;
be809868 618
9e84b847 619 return wxSEMA_NO_ERROR;
be809868
VZ
620}
621
9e84b847 622wxSemaError wxSemaphoreInternal::WaitTimeout(unsigned long milliseconds)
be809868 623{
cd10339a 624 wxMutexLocker locker(m_mutex);
be809868
VZ
625
626 wxLongLong startTime = wxGetLocalTimeMillis();
627
9e84b847 628 while ( m_count == 0 )
9fc3ad34 629 {
be809868 630 wxLongLong elapsed = wxGetLocalTimeMillis() - startTime;
9e84b847 631 long remainingTime = (long)milliseconds - (long)elapsed.GetLo();
be809868 632 if ( remainingTime <= 0 )
9e84b847
VZ
633 {
634 // timeout
635 return wxSEMA_TIMEOUT;
636 }
be809868 637
918dc519
VZ
638 switch ( m_cond.WaitTimeout(remainingTime) )
639 {
640 case wxCOND_TIMEOUT:
641 return wxSEMA_TIMEOUT;
642
643 default:
644 return wxSEMA_MISC_ERROR;
645
646 case wxCOND_NO_ERROR:
647 ;
648 }
9fc3ad34 649 }
8d5eff60 650
9e84b847 651 m_count--;
be809868 652
9e84b847 653 return wxSEMA_NO_ERROR;
be809868
VZ
654}
655
9e84b847 656wxSemaError wxSemaphoreInternal::Post()
be809868 657{
cd10339a 658 wxMutexLocker locker(m_mutex);
be809868 659
9e84b847 660 if ( m_maxcount > 0 && m_count == m_maxcount )
60ce696e 661 {
9e84b847 662 return wxSEMA_OVERFLOW;
60ce696e 663 }
be809868 664
9e84b847 665 m_count++;
518b5d2f 666
9e84b847 667 wxLogTrace(TRACE_SEMA,
9a83f860 668 wxT("Thread %p about to signal semaphore, count = %lu"),
35e9c131 669 THR_ID_CAST(wxThread::GetCurrentId()), (unsigned long)m_count);
2b5f62a0 670
9e84b847
VZ
671 return m_cond.Signal() == wxCOND_NO_ERROR ? wxSEMA_NO_ERROR
672 : wxSEMA_MISC_ERROR;
518b5d2f
VZ
673}
674
be809868 675// ===========================================================================
8d5eff60 676// wxThread implementation
be809868 677// ===========================================================================
518b5d2f 678
295272bd
VZ
679// the thread callback functions must have the C linkage
680extern "C"
681{
682
816a7358 683#ifdef wxHAVE_PTHREAD_CLEANUP
295272bd
VZ
684 // thread exit function
685 void wxPthreadCleanup(void *ptr);
816a7358 686#endif // wxHAVE_PTHREAD_CLEANUP
90350682 687
295272bd 688void *wxPthreadStart(void *ptr);
90350682 689
295272bd 690} // extern "C"
90350682 691
8d5eff60
VZ
692// ----------------------------------------------------------------------------
693// wxThreadInternal
694// ----------------------------------------------------------------------------
695
518b5d2f
VZ
696class wxThreadInternal
697{
698public:
699 wxThreadInternal();
700 ~wxThreadInternal();
701
702 // thread entry function
295272bd 703 static void *PthreadStart(wxThread *thread);
518b5d2f
VZ
704
705 // thread actions
706 // start the thread
707 wxThreadError Run();
9e84b847
VZ
708 // unblock the thread allowing it to run
709 void SignalRun() { m_semRun.Post(); }
518b5d2f 710 // ask the thread to terminate
882eefb1 711 void Wait();
518b5d2f
VZ
712 // go to sleep until Resume() is called
713 void Pause();
714 // resume the thread
715 void Resume();
716
717 // accessors
718 // priority
719 int GetPriority() const { return m_prio; }
720 void SetPriority(int prio) { m_prio = prio; }
721 // state
882eefb1 722 wxThreadState GetState() const { return m_state; }
9e84b847
VZ
723 void SetState(wxThreadState state)
724 {
711f12ef 725#if wxUSE_LOG_TRACE
a243da29 726 static const wxChar *const stateNames[] =
9e84b847 727 {
9a83f860
VZ
728 wxT("NEW"),
729 wxT("RUNNING"),
730 wxT("PAUSED"),
731 wxT("EXITED"),
9e84b847
VZ
732 };
733
9a83f860 734 wxLogTrace(TRACE_THREADS, wxT("Thread %p: %s => %s."),
35e9c131 735 THR_ID(this), stateNames[m_state], stateNames[state]);
711f12ef 736#endif // wxUSE_LOG_TRACE
9e84b847
VZ
737
738 m_state = state;
739 }
518b5d2f 740 // id
882eefb1
VZ
741 pthread_t GetId() const { return m_threadId; }
742 pthread_t *GetIdPtr() { return &m_threadId; }
518b5d2f 743 // "cancelled" flag
ad9835c9 744 void SetCancelFlag() { m_cancelled = true; }
518b5d2f 745 bool WasCancelled() const { return m_cancelled; }
9fc3ad34
VZ
746 // exit code
747 void SetExitCode(wxThread::ExitCode exitcode) { m_exitcode = exitcode; }
748 wxThread::ExitCode GetExitCode() const { return m_exitcode; }
749
4c460b34
VZ
750 // the pause flag
751 void SetReallyPaused(bool paused) { m_isPaused = paused; }
752 bool IsReallyPaused() const { return m_isPaused; }
753
9fc3ad34 754 // tell the thread that it is a detached one
4c460b34
VZ
755 void Detach()
756 {
9e84b847
VZ
757 wxCriticalSectionLocker lock(m_csJoinFlag);
758
ad9835c9
WS
759 m_shouldBeJoined = false;
760 m_isDetached = true;
4c460b34 761 }
518b5d2f 762
816a7358 763#ifdef wxHAVE_PTHREAD_CLEANUP
90350682
VZ
764 // this is used by wxPthreadCleanup() only
765 static void Cleanup(wxThread *thread);
816a7358 766#endif // wxHAVE_PTHREAD_CLEANUP
90350682 767
518b5d2f 768private:
882eefb1
VZ
769 pthread_t m_threadId; // id of the thread
770 wxThreadState m_state; // see wxThreadState enum
77ffb593 771 int m_prio; // in wxWidgets units: from 0 to 100
518b5d2f 772
9fc3ad34 773 // this flag is set when the thread should terminate
518b5d2f
VZ
774 bool m_cancelled;
775
be809868 776 // this flag is set when the thread is blocking on m_semSuspend
4c460b34
VZ
777 bool m_isPaused;
778
9fc3ad34
VZ
779 // the thread exit code - only used for joinable (!detached) threads and
780 // is only valid after the thread termination
781 wxThread::ExitCode m_exitcode;
782
783 // many threads may call Wait(), but only one of them should call
784 // pthread_join(), so we have to keep track of this
785 wxCriticalSection m_csJoinFlag;
786 bool m_shouldBeJoined;
4c460b34 787 bool m_isDetached;
9fc3ad34 788
be809868 789 // this semaphore is posted by Run() and the threads Entry() is not
9fc3ad34 790 // called before it is done
be809868 791 wxSemaphore m_semRun;
9fc3ad34
VZ
792
793 // this one is signaled when the thread should resume after having been
794 // Pause()d
be809868 795 wxSemaphore m_semSuspend;
518b5d2f
VZ
796};
797
9fc3ad34
VZ
798// ----------------------------------------------------------------------------
799// thread startup and exit functions
800// ----------------------------------------------------------------------------
801
295272bd
VZ
802void *wxPthreadStart(void *ptr)
803{
804 return wxThreadInternal::PthreadStart((wxThread *)ptr);
805}
806
807void *wxThreadInternal::PthreadStart(wxThread *thread)
518b5d2f 808{
9fc3ad34 809 wxThreadInternal *pthread = thread->m_internal;
518b5d2f 810
9a83f860 811 wxLogTrace(TRACE_THREADS, wxT("Thread %p started."), THR_ID(pthread));
ef4f69ec 812
9fc3ad34
VZ
813 // associate the thread pointer with the newly created thread so that
814 // wxThread::This() will work
862cc6f9
VZ
815 int rc = pthread_setspecific(gs_keySelf, thread);
816 if ( rc != 0 )
518b5d2f 817 {
58230fb1 818 wxLogSysError(rc, _("Cannot start thread: error writing TLS"));
518b5d2f
VZ
819
820 return (void *)-1;
821 }
9fc3ad34 822
4c460b34
VZ
823 // have to declare this before pthread_cleanup_push() which defines a
824 // block!
825 bool dontRunAtAll;
826
816a7358 827#ifdef wxHAVE_PTHREAD_CLEANUP
9fc3ad34
VZ
828 // install the cleanup handler which will be called if the thread is
829 // cancelled
295272bd 830 pthread_cleanup_push(wxPthreadCleanup, thread);
816a7358 831#endif // wxHAVE_PTHREAD_CLEANUP
518b5d2f 832
be809868
VZ
833 // wait for the semaphore to be posted from Run()
834 pthread->m_semRun.Wait();
518b5d2f 835
4c460b34
VZ
836 // test whether we should run the run at all - may be it was deleted
837 // before it started to Run()?
838 {
839 wxCriticalSectionLocker lock(thread->m_critsect);
9fc3ad34 840
4c460b34
VZ
841 dontRunAtAll = pthread->GetState() == STATE_NEW &&
842 pthread->WasCancelled();
843 }
9fc3ad34 844
4c460b34 845 if ( !dontRunAtAll )
9fc3ad34 846 {
4c460b34 847 // call the main entry
ef4f69ec 848 wxLogTrace(TRACE_THREADS,
9a83f860 849 wxT("Thread %p about to enter its Entry()."),
ef4f69ec
VZ
850 THR_ID(pthread));
851
79b7b95a
VS
852 wxTRY
853 {
854 pthread->m_exitcode = thread->Entry();
5092b3ad 855
79b7b95a 856 wxLogTrace(TRACE_THREADS,
9a83f860 857 wxT("Thread %p Entry() returned %lu."),
79b7b95a
VS
858 THR_ID(pthread), wxPtrToUInt(pthread->m_exitcode));
859 }
860 wxCATCH_ALL( wxTheApp->OnUnhandledException(); )
ef4f69ec 861
4c460b34
VZ
862 {
863 wxCriticalSectionLocker lock(thread->m_critsect);
864
4c460b34 865 // change the state of the thread to "exited" so that
90350682 866 // wxPthreadCleanup handler won't do anything from now (if it's
4c460b34
VZ
867 // called before we do pthread_cleanup_pop below)
868 pthread->SetState(STATE_EXITED);
869 }
9fc3ad34
VZ
870 }
871
741d91c5
VZ
872 // NB: pthread_cleanup_push/pop() are macros and pop contains the matching
873 // '}' for the '{' in push, so they must be used in the same block!
816a7358 874#ifdef wxHAVE_PTHREAD_CLEANUP
741d91c5
VZ
875 #ifdef __DECCXX
876 // under Tru64 we get a warning from macro expansion
877 #pragma message save
878 #pragma message disable(declbutnotref)
879 #endif
880
9fc3ad34 881 // remove the cleanup handler without executing it
062c4861 882 pthread_cleanup_pop(FALSE);
741d91c5
VZ
883
884 #ifdef __DECCXX
885 #pragma message restore
886 #endif
816a7358 887#endif // wxHAVE_PTHREAD_CLEANUP
518b5d2f 888
4c460b34
VZ
889 if ( dontRunAtAll )
890 {
9e84b847 891 // FIXME: deleting a possibly joinable thread here???
4c460b34 892 delete thread;
518b5d2f 893
4c460b34
VZ
894 return EXITCODE_CANCELLED;
895 }
896 else
897 {
898 // terminate the thread
899 thread->Exit(pthread->m_exitcode);
900
901 wxFAIL_MSG(wxT("wxThread::Exit() can't return."));
518b5d2f 902
4c460b34
VZ
903 return NULL;
904 }
518b5d2f
VZ
905}
906
816a7358 907#ifdef wxHAVE_PTHREAD_CLEANUP
5092b3ad 908
9fc3ad34 909// this handler is called when the thread is cancelled
90350682 910extern "C" void wxPthreadCleanup(void *ptr)
5092b3ad 911{
90350682
VZ
912 wxThreadInternal::Cleanup((wxThread *)ptr);
913}
5092b3ad 914
90350682
VZ
915void wxThreadInternal::Cleanup(wxThread *thread)
916{
b4866582 917 if (pthread_getspecific(gs_keySelf) == 0) return;
9fc3ad34
VZ
918 {
919 wxCriticalSectionLocker lock(thread->m_critsect);
920 if ( thread->m_internal->GetState() == STATE_EXITED )
921 {
922 // thread is already considered as finished.
923 return;
924 }
925 }
5092b3ad 926
9fc3ad34
VZ
927 // exit the thread gracefully
928 thread->Exit(EXITCODE_CANCELLED);
929}
5092b3ad 930
816a7358 931#endif // wxHAVE_PTHREAD_CLEANUP
5092b3ad 932
9fc3ad34
VZ
933// ----------------------------------------------------------------------------
934// wxThreadInternal
935// ----------------------------------------------------------------------------
5092b3ad 936
518b5d2f
VZ
937wxThreadInternal::wxThreadInternal()
938{
939 m_state = STATE_NEW;
ad9835c9 940 m_cancelled = false;
bbfa0322
VZ
941 m_prio = WXTHREAD_DEFAULT_PRIORITY;
942 m_threadId = 0;
9fc3ad34 943 m_exitcode = 0;
518b5d2f 944
ad9835c9
WS
945 // set to true only when the thread starts waiting on m_semSuspend
946 m_isPaused = false;
4c460b34 947
9fc3ad34 948 // defaults for joinable threads
ad9835c9
WS
949 m_shouldBeJoined = true;
950 m_isDetached = false;
518b5d2f
VZ
951}
952
953wxThreadInternal::~wxThreadInternal()
954{
518b5d2f
VZ
955}
956
957wxThreadError wxThreadInternal::Run()
958{
959 wxCHECK_MSG( GetState() == STATE_NEW, wxTHREAD_RUNNING,
9fc3ad34 960 wxT("thread may only be started once after Create()") );
518b5d2f 961
9fc3ad34 962 SetState(STATE_RUNNING);
518b5d2f 963
9e84b847
VZ
964 // wake up threads waiting for our start
965 SignalRun();
966
518b5d2f 967 return wxTHREAD_NO_ERROR;
518b5d2f
VZ
968}
969
882eefb1 970void wxThreadInternal::Wait()
518b5d2f 971{
9a83f860 972 wxCHECK_RET( !m_isDetached, wxT("can't wait for a detached thread") );
9e84b847 973
518b5d2f
VZ
974 // if the thread we're waiting for is waiting for the GUI mutex, we will
975 // deadlock so make sure we release it temporarily
976 if ( wxThread::IsMain() )
977 wxMutexGuiLeave();
978
547b93ab 979 wxLogTrace(TRACE_THREADS,
9a83f860 980 wxT("Starting to wait for thread %p to exit."),
ef4f69ec
VZ
981 THR_ID(this));
982
9e84b847
VZ
983 // to avoid memory leaks we should call pthread_join(), but it must only be
984 // done once so use a critical section to serialize the code below
9fc3ad34 985 {
4c460b34
VZ
986 wxCriticalSectionLocker lock(m_csJoinFlag);
987
988 if ( m_shouldBeJoined )
9fc3ad34 989 {
4c460b34
VZ
990 // FIXME shouldn't we set cancellation type to DISABLED here? If
991 // we're cancelled inside pthread_join(), things will almost
992 // certainly break - but if we disable the cancellation, we
993 // might deadlock
2b5f62a0 994 if ( pthread_join(GetId(), &m_exitcode) != 0 )
4c460b34 995 {
9e84b847
VZ
996 // this is a serious problem, so use wxLogError and not
997 // wxLogDebug: it is possible to bring the system to its knees
998 // by creating too many threads and not joining them quite
999 // easily
76a6e803 1000 wxLogError(_("Failed to join a thread, potential memory leak detected - please restart the program"));
4c460b34 1001 }
9fc3ad34 1002
ad9835c9 1003 m_shouldBeJoined = false;
4c460b34 1004 }
9fc3ad34 1005 }
9111db68 1006
518b5d2f
VZ
1007 // reacquire GUI mutex
1008 if ( wxThread::IsMain() )
1009 wxMutexGuiEnter();
1010}
1011
518b5d2f
VZ
1012void wxThreadInternal::Pause()
1013{
882eefb1
VZ
1014 // the state is set from the thread which pauses us first, this function
1015 // is called later so the state should have been already set
518b5d2f 1016 wxCHECK_RET( m_state == STATE_PAUSED,
223d09f6 1017 wxT("thread must first be paused with wxThread::Pause().") );
518b5d2f 1018
ef4f69ec 1019 wxLogTrace(TRACE_THREADS,
9a83f860 1020 wxT("Thread %p goes to sleep."), THR_ID(this));
ef4f69ec 1021
be809868
VZ
1022 // wait until the semaphore is Post()ed from Resume()
1023 m_semSuspend.Wait();
518b5d2f
VZ
1024}
1025
1026void wxThreadInternal::Resume()
1027{
1028 wxCHECK_RET( m_state == STATE_PAUSED,
223d09f6 1029 wxT("can't resume thread which is not suspended.") );
518b5d2f 1030
4c460b34
VZ
1031 // the thread might be not actually paused yet - if there were no call to
1032 // TestDestroy() since the last call to Pause() for example
1033 if ( IsReallyPaused() )
1034 {
ef4f69ec 1035 wxLogTrace(TRACE_THREADS,
9a83f860 1036 wxT("Waking up thread %p"), THR_ID(this));
ef4f69ec 1037
4c460b34 1038 // wake up Pause()
be809868 1039 m_semSuspend.Post();
4c460b34
VZ
1040
1041 // reset the flag
ad9835c9 1042 SetReallyPaused(false);
4c460b34
VZ
1043 }
1044 else
1045 {
ef4f69ec 1046 wxLogTrace(TRACE_THREADS,
9a83f860 1047 wxT("Thread %p is not yet really paused"), THR_ID(this));
4c460b34 1048 }
518b5d2f
VZ
1049
1050 SetState(STATE_RUNNING);
1051}
1052
1053// -----------------------------------------------------------------------------
9fc3ad34 1054// wxThread static functions
518b5d2f
VZ
1055// -----------------------------------------------------------------------------
1056
1057wxThread *wxThread::This()
1058{
1059 return (wxThread *)pthread_getspecific(gs_keySelf);
1060}
1061
518b5d2f
VZ
1062void wxThread::Yield()
1063{
6f837e5c 1064#ifdef HAVE_SCHED_YIELD
518b5d2f 1065 sched_yield();
6f837e5c 1066#endif
518b5d2f
VZ
1067}
1068
ef8d96c2
VZ
1069int wxThread::GetCPUCount()
1070{
85bf679a
VZ
1071#if defined(_SC_NPROCESSORS_ONLN)
1072 // this works for Solaris and Linux 2.6
1073 int rc = sysconf(_SC_NPROCESSORS_ONLN);
1074 if ( rc != -1 )
1075 {
1076 return rc;
1077 }
1078#elif defined(__LINUX__) && wxUSE_FFILE
ef8d96c2
VZ
1079 // read from proc (can't use wxTextFile here because it's a special file:
1080 // it has 0 size but still can be read from)
1081 wxLogNull nolog;
1082
9a83f860 1083 wxFFile file(wxT("/proc/cpuinfo"));
ef8d96c2
VZ
1084 if ( file.IsOpened() )
1085 {
1086 // slurp the whole file
1087 wxString s;
1088 if ( file.ReadAll(&s) )
1089 {
9ec1ed2a 1090 // (ab)use Replace() to find the number of "processor: num" strings
9a83f860 1091 size_t count = s.Replace(wxT("processor\t:"), wxT(""));
ef8d96c2
VZ
1092 if ( count > 0 )
1093 {
1094 return count;
1095 }
1096
9a83f860 1097 wxLogDebug(wxT("failed to parse /proc/cpuinfo"));
ef8d96c2
VZ
1098 }
1099 else
1100 {
9a83f860 1101 wxLogDebug(wxT("failed to read /proc/cpuinfo"));
ef8d96c2
VZ
1102 }
1103 }
ef8d96c2
VZ
1104#endif // different ways to get number of CPUs
1105
1106 // unknown
1107 return -1;
1108}
1109
f9226383 1110wxThreadIdType wxThread::GetCurrentId()
1fcfb40d 1111{
f9226383 1112 return (wxThreadIdType)pthread_self();
1fcfb40d
RD
1113}
1114
ef4f69ec 1115
ef8d96c2
VZ
1116bool wxThread::SetConcurrency(size_t level)
1117{
1118#ifdef HAVE_THR_SETCONCURRENCY
1119 int rc = thr_setconcurrency(level);
1120 if ( rc != 0 )
1121 {
9a83f860 1122 wxLogSysError(rc, wxT("thr_setconcurrency() failed"));
ef8d96c2
VZ
1123 }
1124
1125 return rc == 0;
1126#else // !HAVE_THR_SETCONCURRENCY
1127 // ok only for the default value
1128 return level == 0;
1129#endif // HAVE_THR_SETCONCURRENCY/!HAVE_THR_SETCONCURRENCY
1130}
1131
518b5d2f
VZ
1132// -----------------------------------------------------------------------------
1133// creating thread
1134// -----------------------------------------------------------------------------
1135
acb8423c 1136wxThread::wxThread(wxThreadKind kind)
518b5d2f
VZ
1137{
1138 // add this thread to the global list of all threads
25b34b26
VZ
1139 {
1140 wxMutexLocker lock(*gs_mutexAllThreads);
1141
1142 gs_allThreads.Add(this);
1143 }
518b5d2f 1144
9fc3ad34 1145 m_internal = new wxThreadInternal();
acb8423c
VZ
1146
1147 m_isDetached = kind == wxTHREAD_DETACHED;
518b5d2f
VZ
1148}
1149
8a077f28
SN
1150#ifdef HAVE_PTHREAD_ATTR_SETSTACKSIZE
1151 #define WXUNUSED_STACKSIZE(identifier) identifier
1152#else
1153 #define WXUNUSED_STACKSIZE(identifier) WXUNUSED(identifier)
1154#endif
1155
1156wxThreadError wxThread::Create(unsigned int WXUNUSED_STACKSIZE(stackSize))
518b5d2f 1157{
9fc3ad34
VZ
1158 if ( m_internal->GetState() != STATE_NEW )
1159 {
1160 // don't recreate thread
518b5d2f 1161 return wxTHREAD_RUNNING;
9fc3ad34 1162 }
518b5d2f
VZ
1163
1164 // set up the thread attribute: right now, we only set thread priority
1165 pthread_attr_t attr;
1166 pthread_attr_init(&attr);
1167
8a077f28
SN
1168#ifdef HAVE_PTHREAD_ATTR_SETSTACKSIZE
1169 if (stackSize)
1170 pthread_attr_setstacksize(&attr, stackSize);
1171#endif
1172
fc9ef629 1173#ifdef HAVE_THREAD_PRIORITY_FUNCTIONS
9fc3ad34
VZ
1174 int policy;
1175 if ( pthread_attr_getschedpolicy(&attr, &policy) != 0 )
518b5d2f 1176 {
58230fb1 1177 wxLogError(_("Cannot retrieve thread scheduling policy."));
518b5d2f
VZ
1178 }
1179
fb10f04c
JJ
1180#ifdef __VMS__
1181 /* the pthread.h contains too many spaces. This is a work-around */
1182# undef sched_get_priority_max
1183#undef sched_get_priority_min
1184#define sched_get_priority_max(_pol_) \
1185 (_pol_ == SCHED_OTHER ? PRI_FG_MAX_NP : PRI_FIFO_MAX)
1186#define sched_get_priority_min(_pol_) \
1187 (_pol_ == SCHED_OTHER ? PRI_FG_MIN_NP : PRI_FIFO_MIN)
1188#endif
1fcfb40d 1189
fb10f04c
JJ
1190 int max_prio = sched_get_priority_max(policy),
1191 min_prio = sched_get_priority_min(policy),
9fc3ad34 1192 prio = m_internal->GetPriority();
518b5d2f
VZ
1193
1194 if ( min_prio == -1 || max_prio == -1 )
1195 {
58230fb1 1196 wxLogError(_("Cannot get priority range for scheduling policy %d."),
9fc3ad34 1197 policy);
518b5d2f 1198 }
bbfa0322
VZ
1199 else if ( max_prio == min_prio )
1200 {
9fc3ad34 1201 if ( prio != WXTHREAD_DEFAULT_PRIORITY )
bbfa0322
VZ
1202 {
1203 // notify the programmer that this doesn't work here
1204 wxLogWarning(_("Thread priority setting is ignored."));
1205 }
1206 //else: we have default priority, so don't complain
1207
1208 // anyhow, don't do anything because priority is just ignored
1209 }
518b5d2f
VZ
1210 else
1211 {
1212 struct sched_param sp;
9fc3ad34
VZ
1213 if ( pthread_attr_getschedparam(&attr, &sp) != 0 )
1214 {
9a83f860 1215 wxFAIL_MSG(wxT("pthread_attr_getschedparam() failed"));
9fc3ad34
VZ
1216 }
1217
1218 sp.sched_priority = min_prio + (prio*(max_prio - min_prio))/100;
1219
1220 if ( pthread_attr_setschedparam(&attr, &sp) != 0 )
1221 {
9a83f860 1222 wxFAIL_MSG(wxT("pthread_attr_setschedparam(priority) failed"));
9fc3ad34 1223 }
518b5d2f 1224 }
34f8c26e 1225#endif // HAVE_THREAD_PRIORITY_FUNCTIONS
518b5d2f 1226
58230fb1
VZ
1227#ifdef HAVE_PTHREAD_ATTR_SETSCOPE
1228 // this will make the threads created by this process really concurrent
9fc3ad34
VZ
1229 if ( pthread_attr_setscope(&attr, PTHREAD_SCOPE_SYSTEM) != 0 )
1230 {
9a83f860 1231 wxFAIL_MSG(wxT("pthread_attr_setscope(PTHREAD_SCOPE_SYSTEM) failed"));
9fc3ad34 1232 }
58230fb1
VZ
1233#endif // HAVE_PTHREAD_ATTR_SETSCOPE
1234
9fc3ad34
VZ
1235 // VZ: assume that this one is always available (it's rather fundamental),
1236 // if this function is ever missing we should try to use
1237 // pthread_detach() instead (after thread creation)
1238 if ( m_isDetached )
1239 {
1240 if ( pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_DETACHED) != 0 )
1241 {
9a83f860 1242 wxFAIL_MSG(wxT("pthread_attr_setdetachstate(DETACHED) failed"));
9fc3ad34
VZ
1243 }
1244
1245 // never try to join detached threads
1246 m_internal->Detach();
1247 }
1248 //else: threads are created joinable by default, it's ok
1249
518b5d2f 1250 // create the new OS thread object
9fc3ad34
VZ
1251 int rc = pthread_create
1252 (
1253 m_internal->GetIdPtr(),
1254 &attr,
295272bd 1255 wxPthreadStart,
9fc3ad34
VZ
1256 (void *)this
1257 );
1258
1259 if ( pthread_attr_destroy(&attr) != 0 )
1260 {
9a83f860 1261 wxFAIL_MSG(wxT("pthread_attr_destroy() failed"));
9fc3ad34 1262 }
518b5d2f
VZ
1263
1264 if ( rc != 0 )
1265 {
9fc3ad34
VZ
1266 m_internal->SetState(STATE_EXITED);
1267
518b5d2f
VZ
1268 return wxTHREAD_NO_RESOURCE;
1269 }
1270
1271 return wxTHREAD_NO_ERROR;
1272}
1273
1274wxThreadError wxThread::Run()
1275{
9fc3ad34
VZ
1276 wxCriticalSectionLocker lock(m_critsect);
1277
1278 wxCHECK_MSG( m_internal->GetId(), wxTHREAD_MISC_ERROR,
223d09f6 1279 wxT("must call wxThread::Create() first") );
bbfa0322 1280
9fc3ad34 1281 return m_internal->Run();
518b5d2f
VZ
1282}
1283
1284// -----------------------------------------------------------------------------
1285// misc accessors
1286// -----------------------------------------------------------------------------
1287
1288void wxThread::SetPriority(unsigned int prio)
1289{
34f8c26e
VZ
1290 wxCHECK_RET( ((int)WXTHREAD_MIN_PRIORITY <= (int)prio) &&
1291 ((int)prio <= (int)WXTHREAD_MAX_PRIORITY),
223d09f6 1292 wxT("invalid thread priority") );
518b5d2f
VZ
1293
1294 wxCriticalSectionLocker lock(m_critsect);
1295
9fc3ad34 1296 switch ( m_internal->GetState() )
518b5d2f
VZ
1297 {
1298 case STATE_NEW:
1299 // thread not yet started, priority will be set when it is
9fc3ad34 1300 m_internal->SetPriority(prio);
518b5d2f
VZ
1301 break;
1302
1303 case STATE_RUNNING:
1304 case STATE_PAUSED:
34f8c26e 1305#ifdef HAVE_THREAD_PRIORITY_FUNCTIONS
7bfe6a32 1306#if defined(__LINUX__)
17a1ebd1
VZ
1307 // On Linux, pthread_setschedparam with SCHED_OTHER does not allow
1308 // a priority other than 0. Instead, we use the BSD setpriority
1309 // which alllows us to set a 'nice' value between 20 to -20. Only
1310 // super user can set a value less than zero (more negative yields
1311 // higher priority). setpriority set the static priority of a
1312 // process, but this is OK since Linux is configured as a thread
1313 // per process.
1314 //
1315 // FIXME this is not true for 2.6!!
7bfe6a32 1316
17a1ebd1
VZ
1317 // map wx priorites WXTHREAD_MIN_PRIORITY..WXTHREAD_MAX_PRIORITY
1318 // to Unix priorities 20..-20
a07bf2d0 1319 if ( setpriority(PRIO_PROCESS, 0, -(2*(int)prio)/5 + 20) == -1 )
17a1ebd1
VZ
1320 {
1321 wxLogError(_("Failed to set thread priority %d."), prio);
7bfe6a32
JS
1322 }
1323#else // __LINUX__
518b5d2f
VZ
1324 {
1325 struct sched_param sparam;
1326 sparam.sched_priority = prio;
1327
9fc3ad34 1328 if ( pthread_setschedparam(m_internal->GetId(),
518b5d2f
VZ
1329 SCHED_OTHER, &sparam) != 0 )
1330 {
1331 wxLogError(_("Failed to set thread priority %d."), prio);
1332 }
1333 }
7bfe6a32 1334#endif // __LINUX__
34f8c26e 1335#endif // HAVE_THREAD_PRIORITY_FUNCTIONS
518b5d2f
VZ
1336 break;
1337
1338 case STATE_EXITED:
1339 default:
223d09f6 1340 wxFAIL_MSG(wxT("impossible to set thread priority in this state"));
518b5d2f
VZ
1341 }
1342}
1343
1344unsigned int wxThread::GetPriority() const
1345{
1346 wxCriticalSectionLocker lock((wxCriticalSection &)m_critsect);
1347
9fc3ad34 1348 return m_internal->GetPriority();
518b5d2f
VZ
1349}
1350
547b93ab 1351wxThreadIdType wxThread::GetId() const
13d068d9 1352{
df744f4d 1353 return (wxThreadIdType) m_internal->GetId();
518b5d2f
VZ
1354}
1355
1356// -----------------------------------------------------------------------------
1357// pause/resume
1358// -----------------------------------------------------------------------------
1359
1360wxThreadError wxThread::Pause()
1361{
4c460b34 1362 wxCHECK_MSG( This() != this, wxTHREAD_MISC_ERROR,
9a83f860 1363 wxT("a thread can't pause itself") );
4c460b34 1364
518b5d2f
VZ
1365 wxCriticalSectionLocker lock(m_critsect);
1366
9fc3ad34 1367 if ( m_internal->GetState() != STATE_RUNNING )
518b5d2f 1368 {
223d09f6 1369 wxLogDebug(wxT("Can't pause thread which is not running."));
518b5d2f
VZ
1370
1371 return wxTHREAD_NOT_RUNNING;
1372 }
1373
9fc3ad34
VZ
1374 // just set a flag, the thread will be really paused only during the next
1375 // call to TestDestroy()
1376 m_internal->SetState(STATE_PAUSED);
518b5d2f
VZ
1377
1378 return wxTHREAD_NO_ERROR;
1379}
1380
1381wxThreadError wxThread::Resume()
1382{
4c460b34 1383 wxCHECK_MSG( This() != this, wxTHREAD_MISC_ERROR,
9a83f860 1384 wxT("a thread can't resume itself") );
518b5d2f 1385
4c460b34 1386 wxCriticalSectionLocker lock(m_critsect);
518b5d2f 1387
4c460b34 1388 wxThreadState state = m_internal->GetState();
9fc3ad34
VZ
1389
1390 switch ( state )
518b5d2f 1391 {
9fc3ad34 1392 case STATE_PAUSED:
9a83f860 1393 wxLogTrace(TRACE_THREADS, wxT("Thread %p suspended, resuming."),
35e9c131 1394 THR_ID(this));
9fc3ad34
VZ
1395
1396 m_internal->Resume();
1397
1398 return wxTHREAD_NO_ERROR;
1399
1400 case STATE_EXITED:
9a83f860 1401 wxLogTrace(TRACE_THREADS, wxT("Thread %p exited, won't resume."),
35e9c131 1402 THR_ID(this));
9fc3ad34 1403 return wxTHREAD_NO_ERROR;
518b5d2f 1404
9fc3ad34 1405 default:
9a83f860 1406 wxLogDebug(wxT("Attempt to resume a thread which is not paused."));
9fc3ad34
VZ
1407
1408 return wxTHREAD_MISC_ERROR;
518b5d2f
VZ
1409 }
1410}
1411
1412// -----------------------------------------------------------------------------
1413// exiting thread
1414// -----------------------------------------------------------------------------
1415
9fc3ad34 1416wxThread::ExitCode wxThread::Wait()
b568d04f 1417{
9fc3ad34 1418 wxCHECK_MSG( This() != this, (ExitCode)-1,
9a83f860 1419 wxT("a thread can't wait for itself") );
9fc3ad34
VZ
1420
1421 wxCHECK_MSG( !m_isDetached, (ExitCode)-1,
9a83f860 1422 wxT("can't wait for detached thread") );
9fc3ad34
VZ
1423
1424 m_internal->Wait();
b568d04f 1425
9fc3ad34 1426 return m_internal->GetExitCode();
b568d04f
VZ
1427}
1428
1429wxThreadError wxThread::Delete(ExitCode *rc)
518b5d2f 1430{
4c460b34 1431 wxCHECK_MSG( This() != this, wxTHREAD_MISC_ERROR,
9a83f860 1432 wxT("a thread can't delete itself") );
4c460b34 1433
9e84b847
VZ
1434 bool isDetached = m_isDetached;
1435
518b5d2f 1436 m_critsect.Enter();
9fc3ad34 1437 wxThreadState state = m_internal->GetState();
518b5d2f 1438
882eefb1 1439 // ask the thread to stop
9fc3ad34
VZ
1440 m_internal->SetCancelFlag();
1441
9111db68
GL
1442 m_critsect.Leave();
1443
518b5d2f
VZ
1444 switch ( state )
1445 {
1446 case STATE_NEW:
4c460b34 1447 // we need to wake up the thread so that PthreadStart() will
9e84b847
VZ
1448 // terminate - right now it's blocking on run semaphore in
1449 // PthreadStart()
4c460b34
VZ
1450 m_internal->SignalRun();
1451
1452 // fall through
1453
518b5d2f
VZ
1454 case STATE_EXITED:
1455 // nothing to do
1456 break;
1457
1458 case STATE_PAUSED:
9e84b847 1459 // resume the thread first
9fc3ad34 1460 m_internal->Resume();
518b5d2f
VZ
1461
1462 // fall through
1463
1464 default:
9e84b847 1465 if ( !isDetached )
9fc3ad34 1466 {
9e84b847
VZ
1467 // wait until the thread stops
1468 m_internal->Wait();
9fc3ad34 1469
9e84b847
VZ
1470 if ( rc )
1471 {
1472 // return the exit code of the thread
1473 *rc = m_internal->GetExitCode();
1474 }
9fc3ad34 1475 }
9e84b847 1476 //else: can't wait for detached threads
518b5d2f 1477 }
363daf0b
FM
1478
1479 if (state == STATE_NEW)
1480 return wxTHREAD_MISC_ERROR;
1481 // for coherency with the MSW implementation, signal the user that
1482 // Delete() was called on a thread which didn't start to run yet.
518b5d2f 1483
acb8423c 1484 return wxTHREAD_NO_ERROR;
518b5d2f
VZ
1485}
1486
1487wxThreadError wxThread::Kill()
1488{
9fc3ad34 1489 wxCHECK_MSG( This() != this, wxTHREAD_MISC_ERROR,
9a83f860 1490 wxT("a thread can't kill itself") );
9fc3ad34
VZ
1491
1492 switch ( m_internal->GetState() )
518b5d2f
VZ
1493 {
1494 case STATE_NEW:
1495 case STATE_EXITED:
1496 return wxTHREAD_NOT_RUNNING;
1497
9fc3ad34
VZ
1498 case STATE_PAUSED:
1499 // resume the thread first
1500 Resume();
1501
1502 // fall through
1503
518b5d2f 1504 default:
9fc3ad34
VZ
1505#ifdef HAVE_PTHREAD_CANCEL
1506 if ( pthread_cancel(m_internal->GetId()) != 0 )
741d91c5 1507#endif // HAVE_PTHREAD_CANCEL
518b5d2f
VZ
1508 {
1509 wxLogError(_("Failed to terminate a thread."));
1510
1511 return wxTHREAD_MISC_ERROR;
1512 }
9fc3ad34 1513
741d91c5 1514#ifdef HAVE_PTHREAD_CANCEL
9fc3ad34
VZ
1515 if ( m_isDetached )
1516 {
1517 // if we use cleanup function, this will be done from
90350682 1518 // wxPthreadCleanup()
816a7358 1519#ifndef wxHAVE_PTHREAD_CLEANUP
9fc3ad34
VZ
1520 ScheduleThreadForDeletion();
1521
b18cfdd9
VZ
1522 // don't call OnExit() here, it can only be called in the
1523 // threads context and we're in the context of another thread
9fc3ad34
VZ
1524
1525 DeleteThread(this);
816a7358 1526#endif // wxHAVE_PTHREAD_CLEANUP
9fc3ad34
VZ
1527 }
1528 else
1529 {
1530 m_internal->SetExitCode(EXITCODE_CANCELLED);
1531 }
518b5d2f
VZ
1532
1533 return wxTHREAD_NO_ERROR;
741d91c5 1534#endif // HAVE_PTHREAD_CANCEL
518b5d2f
VZ
1535 }
1536}
1537
b568d04f 1538void wxThread::Exit(ExitCode status)
518b5d2f 1539{
4c460b34 1540 wxASSERT_MSG( This() == this,
9a83f860 1541 wxT("wxThread::Exit() can only be called in the context of the same thread") );
4c460b34 1542
9e84b847
VZ
1543 if ( m_isDetached )
1544 {
1545 // from the moment we call OnExit(), the main program may terminate at
1546 // any moment, so mark this thread as being already in process of being
1547 // deleted or wxThreadModule::OnExit() will try to delete it again
1548 ScheduleThreadForDeletion();
1549 }
9fc3ad34
VZ
1550
1551 // don't enter m_critsect before calling OnExit() because the user code
1552 // might deadlock if, for example, it signals a condition in OnExit() (a
1553 // common case) while the main thread calls any of functions entering
1554 // m_critsect on us (almost all of them do)
79b7b95a
VS
1555 wxTRY
1556 {
1557 OnExit();
1558 }
1559 wxCATCH_ALL( wxTheApp->OnUnhandledException(); )
518b5d2f 1560
9fc3ad34
VZ
1561 // delete C++ thread object if this is a detached thread - user is
1562 // responsible for doing this for joinable ones
1563 if ( m_isDetached )
1564 {
1565 // FIXME I'm feeling bad about it - what if another thread function is
1566 // called (in another thread context) now? It will try to access
1567 // half destroyed object which will probably result in something
1568 // very bad - but we can't protect this by a crit section unless
1569 // we make it a global object, but this would mean that we can
1570 // only call one thread function at a time :-(
1571 DeleteThread(this);
b4866582 1572 pthread_setspecific(gs_keySelf, 0);
9fc3ad34 1573 }
343b1669
RR
1574 else
1575 {
1576 m_critsect.Enter();
1577 m_internal->SetState(STATE_EXITED);
1578 m_critsect.Leave();
1579 }
9fc3ad34
VZ
1580
1581 // terminate the thread (pthread_exit() never returns)
518b5d2f 1582 pthread_exit(status);
9fc3ad34 1583
9a83f860 1584 wxFAIL_MSG(wxT("pthread_exit() failed"));
518b5d2f
VZ
1585}
1586
1587// also test whether we were paused
1588bool wxThread::TestDestroy()
1589{
4c460b34 1590 wxASSERT_MSG( This() == this,
9a83f860 1591 wxT("wxThread::TestDestroy() can only be called in the context of the same thread") );
4c460b34 1592
9fc3ad34 1593 m_critsect.Enter();
518b5d2f 1594
9fc3ad34 1595 if ( m_internal->GetState() == STATE_PAUSED )
518b5d2f 1596 {
ad9835c9 1597 m_internal->SetReallyPaused(true);
4c460b34 1598
9fc3ad34
VZ
1599 // leave the crit section or the other threads will stop too if they
1600 // try to call any of (seemingly harmless) IsXXX() functions while we
1601 // sleep
518b5d2f
VZ
1602 m_critsect.Leave();
1603
9fc3ad34
VZ
1604 m_internal->Pause();
1605 }
1606 else
1607 {
1608 // thread wasn't requested to pause, nothing to do
1609 m_critsect.Leave();
518b5d2f
VZ
1610 }
1611
9fc3ad34 1612 return m_internal->WasCancelled();
518b5d2f
VZ
1613}
1614
1615wxThread::~wxThread()
1616{
062c4861 1617 m_critsect.Enter();
9fc3ad34
VZ
1618
1619 // check that the thread either exited or couldn't be created
1620 if ( m_internal->GetState() != STATE_EXITED &&
1621 m_internal->GetState() != STATE_NEW )
bbfa0322 1622 {
35e9c131
VS
1623 wxLogDebug(wxT("The thread %p is being destroyed although it is still running! The application may crash."),
1624 THR_ID(this));
bbfa0322 1625 }
062c4861
GL
1626
1627 m_critsect.Leave();
1628
9fc3ad34 1629 delete m_internal;
bbfa0322 1630
518b5d2f 1631 // remove this thread from the global array
25b34b26
VZ
1632 {
1633 wxMutexLocker lock(*gs_mutexAllThreads);
1634
1635 gs_allThreads.Remove(this);
1636 }
518b5d2f
VZ
1637}
1638
1639// -----------------------------------------------------------------------------
1640// state tests
1641// -----------------------------------------------------------------------------
1642
1643bool wxThread::IsRunning() const
1644{
1645 wxCriticalSectionLocker lock((wxCriticalSection &)m_critsect);
1646
9fc3ad34 1647 return m_internal->GetState() == STATE_RUNNING;
518b5d2f
VZ
1648}
1649
1650bool wxThread::IsAlive() const
1651{
1652 wxCriticalSectionLocker lock((wxCriticalSection&)m_critsect);
1653
9fc3ad34 1654 switch ( m_internal->GetState() )
518b5d2f
VZ
1655 {
1656 case STATE_RUNNING:
1657 case STATE_PAUSED:
ad9835c9 1658 return true;
518b5d2f
VZ
1659
1660 default:
ad9835c9 1661 return false;
518b5d2f
VZ
1662 }
1663}
1664
a737331d
GL
1665bool wxThread::IsPaused() const
1666{
1667 wxCriticalSectionLocker lock((wxCriticalSection&)m_critsect);
1668
9fc3ad34 1669 return (m_internal->GetState() == STATE_PAUSED);
a737331d
GL
1670}
1671
518b5d2f
VZ
1672//--------------------------------------------------------------------
1673// wxThreadModule
1674//--------------------------------------------------------------------
1675
a94c4b85
SC
1676#ifdef __WXOSX__
1677void wxOSXThreadModuleOnInit();
1678void wxOSXThreadModuleOnExit();
1679#endif
1680
518b5d2f
VZ
1681class wxThreadModule : public wxModule
1682{
1683public:
1684 virtual bool OnInit();
1685 virtual void OnExit();
1686
1687private:
1688 DECLARE_DYNAMIC_CLASS(wxThreadModule)
1689};
1690
1691IMPLEMENT_DYNAMIC_CLASS(wxThreadModule, wxModule)
1692
1693bool wxThreadModule::OnInit()
1694{
58230fb1
VZ
1695 int rc = pthread_key_create(&gs_keySelf, NULL /* dtor function */);
1696 if ( rc != 0 )
518b5d2f 1697 {
76a6e803 1698 wxLogSysError(rc, _("Thread module initialization failed: failed to create thread key"));
518b5d2f 1699
ad9835c9 1700 return false;
518b5d2f
VZ
1701 }
1702
f9226383 1703 wxThread::ms_idMainThread = wxThread::GetCurrentId();
19da4326 1704
25b34b26
VZ
1705 gs_mutexAllThreads = new wxMutex();
1706
a94c4b85
SC
1707#ifdef __WXOSX__
1708 wxOSXThreadModuleOnInit();
1709#else
9fc3ad34 1710 gs_mutexGui = new wxMutex();
518b5d2f 1711 gs_mutexGui->Lock();
a94c4b85 1712#endif
518b5d2f 1713
be809868 1714 gs_mutexDeleteThread = new wxMutex();
25b34b26 1715 gs_condAllDeleted = new wxCondition(*gs_mutexDeleteThread);
88e243b2 1716
ad9835c9 1717 return true;
518b5d2f
VZ
1718}
1719
1720void wxThreadModule::OnExit()
1721{
223d09f6 1722 wxASSERT_MSG( wxThread::IsMain(), wxT("only main thread can be here") );
518b5d2f 1723
9fc3ad34
VZ
1724 // are there any threads left which are being deleted right now?
1725 size_t nThreadsBeingDeleted;
be809868 1726
9fc3ad34 1727 {
be809868 1728 wxMutexLocker lock( *gs_mutexDeleteThread );
9fc3ad34 1729 nThreadsBeingDeleted = gs_nThreadsBeingDeleted;
9fc3ad34 1730
be809868 1731 if ( nThreadsBeingDeleted > 0 )
9e84b847 1732 {
2b5f62a0 1733 wxLogTrace(TRACE_THREADS,
9a83f860 1734 wxT("Waiting for %lu threads to disappear"),
2b5f62a0 1735 (unsigned long)nThreadsBeingDeleted);
9fc3ad34 1736
be809868
VZ
1737 // have to wait until all of them disappear
1738 gs_condAllDeleted->Wait();
1739 }
9fc3ad34
VZ
1740 }
1741
25b34b26
VZ
1742 size_t count;
1743
4c460b34 1744 {
25b34b26
VZ
1745 wxMutexLocker lock(*gs_mutexAllThreads);
1746
1747 // terminate any threads left
1748 count = gs_allThreads.GetCount();
1749 if ( count != 0u )
1750 {
1751 wxLogDebug(wxT("%lu threads were not terminated by the application."),
1752 (unsigned long)count);
1753 }
1754 } // unlock mutex before deleting the threads as they lock it in their dtor
518b5d2f
VZ
1755
1756 for ( size_t n = 0u; n < count; n++ )
1757 {
bbfa0322
VZ
1758 // Delete calls the destructor which removes the current entry. We
1759 // should only delete the first one each time.
0ac77ef5 1760 gs_allThreads[0]->Delete();
518b5d2f
VZ
1761 }
1762
25b34b26
VZ
1763 delete gs_mutexAllThreads;
1764
a94c4b85
SC
1765#ifdef __WXOSX__
1766 wxOSXThreadModuleOnExit();
1767#else
518b5d2f
VZ
1768 // destroy GUI mutex
1769 gs_mutexGui->Unlock();
518b5d2f 1770 delete gs_mutexGui;
a94c4b85 1771#endif
518b5d2f
VZ
1772
1773 // and free TLD slot
1774 (void)pthread_key_delete(gs_keySelf);
be809868
VZ
1775
1776 delete gs_condAllDeleted;
1777 delete gs_mutexDeleteThread;
518b5d2f
VZ
1778}
1779
1780// ----------------------------------------------------------------------------
1781// global functions
1782// ----------------------------------------------------------------------------
1783
9fc3ad34
VZ
1784static void ScheduleThreadForDeletion()
1785{
be809868 1786 wxMutexLocker lock( *gs_mutexDeleteThread );
9fc3ad34
VZ
1787
1788 gs_nThreadsBeingDeleted++;
1789
9a83f860 1790 wxLogTrace(TRACE_THREADS, wxT("%lu thread%s waiting to be deleted"),
2b5f62a0 1791 (unsigned long)gs_nThreadsBeingDeleted,
9a83f860 1792 gs_nThreadsBeingDeleted == 1 ? wxT("") : wxT("s"));
9fc3ad34
VZ
1793}
1794
1795static void DeleteThread(wxThread *This)
1796{
35e9c131 1797 wxLogTrace(TRACE_THREADS, wxT("Thread %p auto deletes."), THR_ID(This));
9fc3ad34 1798
be809868 1799 delete This;
9fc3ad34 1800
2450225e
VZ
1801 // only lock gs_mutexDeleteThread after deleting the thread to avoid
1802 // calling out into user code with it locked as this may result in
1803 // deadlocks if the thread dtor deletes another thread (see #11501)
1804 wxMutexLocker locker( *gs_mutexDeleteThread );
1805
be809868 1806 wxCHECK_RET( gs_nThreadsBeingDeleted > 0,
9a83f860 1807 wxT("no threads scheduled for deletion, yet we delete one?") );
9fc3ad34 1808
9a83f860 1809 wxLogTrace(TRACE_THREADS, wxT("%lu threads remain scheduled for deletion."),
2b5f62a0 1810 (unsigned long)gs_nThreadsBeingDeleted - 1);
4c460b34 1811
9fc3ad34
VZ
1812 if ( !--gs_nThreadsBeingDeleted )
1813 {
1814 // no more threads left, signal it
1815 gs_condAllDeleted->Signal();
9fc3ad34
VZ
1816 }
1817}
1818
a94c4b85
SC
1819#ifndef __WXOSX__
1820
d254213e 1821void wxMutexGuiEnterImpl()
518b5d2f 1822{
9fc3ad34 1823 gs_mutexGui->Lock();
518b5d2f
VZ
1824}
1825
d254213e 1826void wxMutexGuiLeaveImpl()
518b5d2f 1827{
9fc3ad34 1828 gs_mutexGui->Unlock();
518b5d2f 1829}
80cb83be 1830
a94c4b85
SC
1831#endif
1832
9e84b847
VZ
1833// ----------------------------------------------------------------------------
1834// include common implementation code
1835// ----------------------------------------------------------------------------
1836
1837#include "wx/thrimpl.cpp"
1838
1839#endif // wxUSE_THREADS