summaryrefslogtreecommitdiffstats
path: root/src/kernel/qlock.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/kernel/qlock.cpp')
-rw-r--r--src/kernel/qlock.cpp14
1 files changed, 7 insertions, 7 deletions
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
}