|
|
|
@ -72,6 +72,7 @@ typedef pthread_mutex_t Q_MUTEX_T;
|
|
|
|
|
#include "qmutex_p.h"
|
|
|
|
|
|
|
|
|
|
#include <errno.h>
|
|
|
|
|
#include <stdint.h>
|
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
|
|
// Private class declarations
|
|
|
|
@ -270,8 +271,8 @@ void TQRecursiveMutexPrivate::unlock()
|
|
|
|
|
} else {
|
|
|
|
|
#ifdef QT_CHECK_RANGE
|
|
|
|
|
tqWarning("TQMutex::unlock: unlock from different thread than locker");
|
|
|
|
|
tqWarning(" was locked by %d, unlock attempt from %d",
|
|
|
|
|
(int)owner, (int)pthread_self());
|
|
|
|
|
tqWarning(" was locked by %d, unlock attempt from %lu",
|
|
|
|
|
(int)owner, (uintptr_t)pthread_self());
|
|
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|