author | simon <simon> | 2002-12-11 01:41:39 (UTC) |
---|---|---|
committer | simon <simon> | 2002-12-11 01:41:39 (UTC) |
commit | 2318caf33bf03acfbcbc0ccce61e3e7ff0aac4aa (patch) (unidiff) | |
tree | 0fd4ed36dd54f26d730394fcef85704e04c06842 | |
parent | 3ec7f32d0924c737664a6ad4dfb43dc3c20605d0 (diff) | |
download | opie-2318caf33bf03acfbcbc0ccce61e3e7ff0aac4aa.zip opie-2318caf33bf03acfbcbc0ccce61e3e7ff0aac4aa.tar.gz opie-2318caf33bf03acfbcbc0ccce61e3e7ff0aac4aa.tar.bz2 |
- added bool Thread::isRunning() const
-rw-r--r-- | noncore/multimedia/opieplayer2/threadutil.cpp | 6 | ||||
-rw-r--r-- | noncore/multimedia/opieplayer2/threadutil.h | 2 |
2 files changed, 8 insertions, 0 deletions
diff --git a/noncore/multimedia/opieplayer2/threadutil.cpp b/noncore/multimedia/opieplayer2/threadutil.cpp index 5687f42..a5cc92d 100644 --- a/noncore/multimedia/opieplayer2/threadutil.cpp +++ b/noncore/multimedia/opieplayer2/threadutil.cpp | |||
@@ -216,6 +216,12 @@ bool Thread::wait() | |||
216 | return d->finishCondition.wait( d->guard ); | 216 | return d->finishCondition.wait( d->guard ); |
217 | } | 217 | } |
218 | 218 | ||
219 | bool Thread::isRunning() const | ||
220 | { | ||
221 | AutoLock lock( d->guard ); | ||
222 | return d->isRunning; | ||
223 | } | ||
224 | |||
219 | void Thread::exit() | 225 | void Thread::exit() |
220 | { | 226 | { |
221 | pthread_exit( 0 ); | 227 | pthread_exit( 0 ); |
diff --git a/noncore/multimedia/opieplayer2/threadutil.h b/noncore/multimedia/opieplayer2/threadutil.h index b537cc1..b67b61d 100644 --- a/noncore/multimedia/opieplayer2/threadutil.h +++ b/noncore/multimedia/opieplayer2/threadutil.h | |||
@@ -100,6 +100,8 @@ namespace ThreadUtil | |||
100 | 100 | ||
101 | bool wait(); | 101 | bool wait(); |
102 | 102 | ||
103 | bool isRunning() const; | ||
104 | |||
103 | static void exit(); | 105 | static void exit(); |
104 | protected: | 106 | protected: |
105 | virtual void run() = 0; | 107 | virtual void run() = 0; |