diff options
Diffstat (limited to 'src/kernel/qthread_unix.cpp')
| -rw-r--r-- | src/kernel/qthread_unix.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/src/kernel/qthread_unix.cpp b/src/kernel/qthread_unix.cpp index 6a6f81b7f..be67e002d 100644 --- a/src/kernel/qthread_unix.cpp +++ b/src/kernel/qthread_unix.cpp @@ -483,7 +483,7 @@ bool TQThread::wait( unsigned long time )  {      TQMutexLocker locker( d->mutex() ); -    if ( d->thread_id == pthread_self() ) { +    if ( pthread_equal( d->thread_id, pthread_self() ) ) {  #ifdef QT_CHECK_STATE  	tqWarning( "TQThread::wait: thread tried to wait on itself" );  #endif // QT_CHECK_STATE | 
