From dd7fcdf1589c8513055f6475d3a1f33075d971d8 Mon Sep 17 00:00:00 2001 From: simon Date: Wed, 11 Dec 2002 11:05:52 +0000 Subject: - 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) --- 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 @@ -133,6 +133,10 @@ struct Thread::Data bool isRunning; WaitCondition finishCondition; + + Thread *thr; + + void run() { thr->run(); } }; extern "C" @@ -149,14 +153,14 @@ static void terminate_thread( void *arg ) data->finishCondition.wakeAll(); } -void *_threadutil_start_thread( void *arg ) +static void *start_thread( void *arg ) { - Thread *thr = ( Thread* )arg; + Thread::Data *data = ( Thread::Data* )arg; - pthread_cleanup_push( terminate_thread, thr->d ); + pthread_cleanup_push( terminate_thread, data ); - thr->d->isRunning = true; - thr->run(); + data->isRunning = true; + data->run(); pthread_cleanup_pop( true ); @@ -169,6 +173,7 @@ void *_threadutil_start_thread( void *arg ) Thread::Thread() : d( new Data ) { + d->thr = this; } Thread::~Thread() @@ -189,7 +194,7 @@ void Thread::start() pthread_attr_t attributes; pthread_attr_init( &attributes ); pthread_attr_setscope( &attributes, PTHREAD_SCOPE_SYSTEM ); - int err = pthread_create( &d->self, &attributes, _threadutil_start_thread, ( void* )this ); + int err = pthread_create( &d->self, &attributes, start_thread, ( void* )d ); if ( err != 0 ) { qDebug( "ThreadUtil::Thread::start() : can't create thread: %s", strerror( err ) ); pthread_attr_destroy( &attributes ); 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 @@ -26,11 +26,6 @@ class QSocketNotifier; -extern "C" -{ - void *_threadutil_start_thread( void* ); -} - namespace ThreadUtil { @@ -88,7 +83,6 @@ namespace ThreadUtil class Thread { - friend void *::_threadutil_start_thread( void* ); public: struct Data; -- cgit v0.9.0.2