From 9a75b154bf0732aa3a501b6e31e566e06c5f8a31 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Fri, 2 Mar 2012 02:11:59 -0600 Subject: Undo prior accidental commit --- src/kernel/qthread_unix.cpp | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'src/kernel/qthread_unix.cpp') 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); -- cgit v1.2.1