projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
RPM version 2.3.0
[wxWidgets.git]
/
src
/
qt
/
threadpsx.cpp
diff --git
a/src/qt/threadpsx.cpp
b/src/qt/threadpsx.cpp
index 9623b91c303a63aeef06bf525e80071857d1b9bf..2d4912c05a32cd4b4d73b2e94867c8a081ba277d 100644
(file)
--- a/
src/qt/threadpsx.cpp
+++ b/
src/qt/threadpsx.cpp
@@
-37,7
+37,7
@@
static pthread_t p_mainid;
static wxMutex p_list_mutex;
static wxList p_threads_list;
static wxMutex p_list_mutex;
static wxList p_threads_list;
-wxMutex wxMainMutex; // controls access to all GUI functions
+wxMutex
*
wxMainMutex; // controls access to all GUI functions
/////////////////////////////////////////////////////////////////////////////
// GUI thread manager
/////////////////////////////////////////////////////////////////////////////
// GUI thread manager
@@
-288,10
+288,10
@@
void *wxThread::Join()
wxYield();
if (do_unlock)
wxYield();
if (do_unlock)
- wxMainMutex
.
Unlock();
+ wxMainMutex
->
Unlock();
pthread_join(p_internal->thread_id, &status);
if (do_unlock)
pthread_join(p_internal->thread_id, &status);
if (do_unlock)
- wxMainMutex
.
Lock();
+ wxMainMutex
->
Lock();
p_list_mutex.Lock();
delete p_threads_list.Nth(p_internal->id);
p_list_mutex.Lock();
delete p_threads_list.Nth(p_internal->id);
@@
-377,17
+377,19
@@
class wxThreadModule : public wxModule {
DECLARE_DYNAMIC_CLASS(wxThreadModule)
public:
virtual bool OnInit() {
DECLARE_DYNAMIC_CLASS(wxThreadModule)
public:
virtual bool OnInit() {
+ wxMainMutex = new wxMutex();
wxThreadGuiInit();
p_mainid = pthread_self();
p_threads_list = wxList(wxKEY_INTEGER);
wxThreadGuiInit();
p_mainid = pthread_self();
p_threads_list = wxList(wxKEY_INTEGER);
- wxMainMutex
.
Lock();
+ wxMainMutex
->
Lock();
return TRUE;
}
virtual void OnExit() {
return TRUE;
}
virtual void OnExit() {
- wxMainMutex
.
Unlock();
+ wxMainMutex
->
Unlock();
wxThreadGuiExit();
wxThreadGuiExit();
+ delete wxMainMutex;
}
};
}
};