author | simon <simon> | 2002-12-11 11:05:52 (UTC) |
---|---|---|
committer | simon <simon> | 2002-12-11 11:05:52 (UTC) |
commit | dd7fcdf1589c8513055f6475d3a1f33075d971d8 (patch) (unidiff) | |
tree | 3b4927a023eea68d1c529b4852ce2cdd1801db49 | |
parent | 616e7437498c7adcad77d9b79e9c450a75b260ca (diff) | |
download | opie-dd7fcdf1589c8513055f6475d3a1f33075d971d8.zip opie-dd7fcdf1589c8513055f6475d3a1f33075d971d8.tar.gz opie-dd7fcdf1589c8513055f6475d3a1f33075d971d8.tar.bz2 |
- gcc2 is not my friend, given that it can't deal with friend declarations
properly :) (a.k.a: make it compile with gcc2, step 2)
-rw-r--r-- | noncore/multimedia/opieplayer2/threadutil.cpp | 17 | ||||
-rw-r--r-- | noncore/multimedia/opieplayer2/threadutil.h | 6 |
2 files changed, 11 insertions, 12 deletions
diff --git a/noncore/multimedia/opieplayer2/threadutil.cpp b/noncore/multimedia/opieplayer2/threadutil.cpp index 7a9e1a4..ff38b1e 100644 --- a/noncore/multimedia/opieplayer2/threadutil.cpp +++ b/noncore/multimedia/opieplayer2/threadutil.cpp | |||
@@ -132,8 +132,12 @@ struct Thread::Data | |||
132 | Mutex guard; | 132 | Mutex guard; |
133 | bool isRunning; | 133 | bool isRunning; |
134 | 134 | ||
135 | WaitCondition finishCondition; | 135 | WaitCondition finishCondition; |
136 | |||
137 | Thread *thr; | ||
138 | |||
139 | void run() { thr->run(); } | ||
136 | }; | 140 | }; |
137 | 141 | ||
138 | extern "C" | 142 | extern "C" |
139 | { | 143 | { |
@@ -148,16 +152,16 @@ static void terminate_thread( void *arg ) | |||
148 | data->isRunning = false; | 152 | data->isRunning = false; |
149 | data->finishCondition.wakeAll(); | 153 | data->finishCondition.wakeAll(); |
150 | } | 154 | } |
151 | 155 | ||
152 | void *_threadutil_start_thread( void *arg ) | 156 | static void *start_thread( void *arg ) |
153 | { | 157 | { |
154 | Thread *thr = ( Thread* )arg; | 158 | Thread::Data *data = ( Thread::Data* )arg; |
155 | 159 | ||
156 | pthread_cleanup_push( terminate_thread, thr->d ); | 160 | pthread_cleanup_push( terminate_thread, data ); |
157 | 161 | ||
158 | thr->d->isRunning = true; | 162 | data->isRunning = true; |
159 | thr->run(); | 163 | data->run(); |
160 | 164 | ||
161 | pthread_cleanup_pop( true ); | 165 | pthread_cleanup_pop( true ); |
162 | 166 | ||
163 | Thread::exit(); | 167 | Thread::exit(); |
@@ -168,8 +172,9 @@ void *_threadutil_start_thread( void *arg ) | |||
168 | 172 | ||
169 | Thread::Thread() | 173 | Thread::Thread() |
170 | : d( new Data ) | 174 | : d( new Data ) |
171 | { | 175 | { |
176 | d->thr = this; | ||
172 | } | 177 | } |
173 | 178 | ||
174 | Thread::~Thread() | 179 | Thread::~Thread() |
175 | { | 180 | { |
@@ -188,9 +193,9 @@ void Thread::start() | |||
188 | 193 | ||
189 | pthread_attr_t attributes; | 194 | pthread_attr_t attributes; |
190 | pthread_attr_init( &attributes ); | 195 | pthread_attr_init( &attributes ); |
191 | pthread_attr_setscope( &attributes, PTHREAD_SCOPE_SYSTEM ); | 196 | pthread_attr_setscope( &attributes, PTHREAD_SCOPE_SYSTEM ); |
192 | int err = pthread_create( &d->self, &attributes, _threadutil_start_thread, ( void* )this ); | 197 | int err = pthread_create( &d->self, &attributes, start_thread, ( void* )d ); |
193 | if ( err != 0 ) { | 198 | if ( err != 0 ) { |
194 | qDebug( "ThreadUtil::Thread::start() : can't create thread: %s", strerror( err ) ); | 199 | qDebug( "ThreadUtil::Thread::start() : can't create thread: %s", strerror( err ) ); |
195 | pthread_attr_destroy( &attributes ); | 200 | pthread_attr_destroy( &attributes ); |
196 | return; | 201 | return; |
diff --git a/noncore/multimedia/opieplayer2/threadutil.h b/noncore/multimedia/opieplayer2/threadutil.h index 21ae6b2..2fd0c68 100644 --- a/noncore/multimedia/opieplayer2/threadutil.h +++ b/noncore/multimedia/opieplayer2/threadutil.h | |||
@@ -25,13 +25,8 @@ | |||
25 | #include <qguardedptr.h> | 25 | #include <qguardedptr.h> |
26 | 26 | ||
27 | class QSocketNotifier; | 27 | class QSocketNotifier; |
28 | 28 | ||
29 | extern "C" | ||
30 | { | ||
31 | void *_threadutil_start_thread( void* ); | ||
32 | } | ||
33 | |||
34 | namespace ThreadUtil | 29 | namespace ThreadUtil |
35 | { | 30 | { |
36 | 31 | ||
37 | class Mutex | 32 | class Mutex |
@@ -87,9 +82,8 @@ namespace ThreadUtil | |||
87 | }; | 82 | }; |
88 | 83 | ||
89 | class Thread | 84 | class Thread |
90 | { | 85 | { |
91 | friend void *::_threadutil_start_thread( void* ); | ||
92 | public: | 86 | public: |
93 | struct Data; | 87 | struct Data; |
94 | 88 | ||
95 | Thread(); | 89 | Thread(); |