diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-03-02 02:11:59 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-03-02 02:11:59 -0600 |
commit | 9a75b154bf0732aa3a501b6e31e566e06c5f8a31 (patch) | |
tree | df1e10cc7504665622d096f9ba80dc9e56f3afb8 /src/kernel/qthread_unix.cpp | |
parent | a830bf10b7d4ed2c83ffe68c0b22d7c4ba9860b0 (diff) | |
download | qt3-9a75b154bf0732aa3a501b6e31e566e06c5f8a31.tar.gz qt3-9a75b154bf0732aa3a501b6e31e566e06c5f8a31.zip |
Undo prior accidental commit
Diffstat (limited to 'src/kernel/qthread_unix.cpp')
-rw-r--r-- | src/kernel/qthread_unix.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/kernel/qthread_unix.cpp b/src/kernel/qthread_unix.cpp index b8c3f0d..e4d6625 100644 --- a/src/kernel/qthread_unix.cpp +++ b/src/kernel/qthread_unix.cpp @@ -131,7 +131,7 @@ void QThreadInstance::finish( void * ) if ( ! d ) { #ifdef QT_CHECK_STATE - tqWarning( "QThread: internal error: zero data for running thread." ); + qWarning( "QThread: internal error: zero data for running thread." ); #endif // QT_CHECK_STATE return; } @@ -328,7 +328,7 @@ void QThread::start(Priority priority) if (pthread_attr_getschedpolicy(&attr, &sched_policy) != 0) { // failed to get the scheduling policy, don't bother // setting the priority - tqWarning("QThread: cannot determine default scheduler policy"); + qWarning("QThread: cannot determine default scheduler policy"); break; } @@ -337,7 +337,7 @@ void QThread::start(Priority priority) if (prio_min == -1 || prio_max == -1) { // failed to get the scheduling parameters, don't // bother setting the priority - tqWarning("QThread: cannot determine scheduler priority range"); + qWarning("QThread: cannot determine scheduler priority range"); break; } @@ -378,7 +378,7 @@ void QThread::start(Priority priority) if ( ret ) { #ifdef QT_CHECK_STATE - tqWarning( "QThread::start: thread stack size error: %s", strerror( ret ) ) ; + qWarning( "QThread::start: thread stack size error: %s", strerror( ret ) ) ; #endif // QT_CHECK_STATE // we failed to set the stacksize, and as the documentation states, @@ -402,7 +402,7 @@ void QThread::start(Priority priority) if ( ret ) { #ifdef QT_CHECK_STATE - tqWarning( "QThread::start: thread creation error: %s", strerror( ret ) ); + qWarning( "QThread::start: thread creation error: %s", strerror( ret ) ); #endif // QT_CHECK_STATE d->running = FALSE; @@ -439,7 +439,7 @@ bool QThread::wait( unsigned long time ) if ( d->thread_id == pthread_self() ) { #ifdef QT_CHECK_STATE - tqWarning( "QThread::wait: thread tried to wait on itself" ); + qWarning( "QThread::wait: thread tried to wait on itself" ); #endif // QT_CHECK_STATE return FALSE; @@ -464,7 +464,7 @@ bool QThread::wait( unsigned long time ) #ifdef QT_CHECK_RANGE if (ret && ret != ETIMEDOUT) - tqWarning("Wait condition wait failure: %s",strerror(ret)); + qWarning("Wait condition wait failure: %s",strerror(ret)); #endif return (ret == 0); |