From a830bf10b7d4ed2c83ffe68c0b22d7c4ba9860b0 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Thu, 1 Mar 2012 13:24:30 -0600 Subject: Rename additional global TQt functions --- src/kernel/qlock.cpp | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'src/kernel/qlock.cpp') diff --git a/src/kernel/qlock.cpp b/src/kernel/qlock.cpp index 56faa1d..0a3f98c 100644 --- a/src/kernel/qlock.cpp +++ b/src/kernel/qlock.cpp @@ -138,9 +138,9 @@ QLock::QLock( const QString &filename, char id, bool create ) } #endif if ( data->id == -1 ) { - qWarning( "Cannot %s semaphore %s \'%c\'", + tqWarning( "Cannot %s semaphore %s \'%c\'", create ? "create" : "get", filename.latin1(), id ); - qDebug("Error %d %s\n",errno,strerror(errno)); + tqDebug("Error %d %s\n",errno,strerror(errno)); } #endif } @@ -211,7 +211,7 @@ void QLock::lock( Type t ) for( int rv=1; rv; ) { rv = flock(data->id, op); if (rv == -1 && errno != EINTR) - qDebug("Semop lock failure %s",strerror(errno)); + tqDebug("Semop lock failure %s",strerror(errno)); } #else sembuf sops; @@ -230,7 +230,7 @@ void QLock::lock( Type t ) do { rv = semop(data->id,&sops,1); if (rv == -1 && errno != EINTR) - qDebug("Semop lock failure %s",strerror(errno)); + tqDebug("Semop lock failure %s",strerror(errno)); } while ( rv == -1 && errno == EINTR ); #endif } @@ -256,7 +256,7 @@ void QLock::unlock() for( int rv=1; rv; ) { rv = flock(data->id, LOCK_UN); if (rv == -1 && errno != EINTR) - qDebug("Semop lock failure %s",strerror(errno)); + tqDebug("Semop lock failure %s",strerror(errno)); } #else sembuf sops; @@ -270,12 +270,12 @@ void QLock::unlock() do { rv = semop(data->id,&sops,1); if (rv == -1 && errno != EINTR) - qDebug("Semop unlock failure %s",strerror(errno)); + tqDebug("Semop unlock failure %s",strerror(errno)); } while ( rv == -1 && errno == EINTR ); #endif } } else { - qDebug("Unlock without corresponding lock"); + tqDebug("Unlock without corresponding lock"); } #endif } -- cgit v1.2.3