summaryrefslogtreecommitdiffstats
path: root/src/corelib/thread/qmutex_p.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/corelib/thread/qmutex_p.h')
-rw-r--r--src/corelib/thread/qmutex_p.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/corelib/thread/qmutex_p.h b/src/corelib/thread/qmutex_p.h
index 96a979e66b..b7d0bdab9b 100644
--- a/src/corelib/thread/qmutex_p.h
+++ b/src/corelib/thread/qmutex_p.h
@@ -62,9 +62,6 @@
#if defined(Q_OS_MAC)
# include <mach/semaphore.h>
-#elif defined(Q_OS_LINUX) && !defined(QT_LINUXBASE)
-// use Linux mutexes everywhere except for LSB builds
-# define QT_LINUX_FUTEX
#elif defined(Q_OS_UNIX)
# if _POSIX_VERSION-0 >= 200112L || _XOPEN_VERSION-0 >= 600
# include <semaphore.h>
@@ -76,7 +73,6 @@ struct timespec;
QT_BEGIN_NAMESPACE
-#if !defined(QT_LINUX_FUTEX)
class QMutexPrivate
{
public:
@@ -134,7 +130,6 @@ public:
Qt::HANDLE event;
#endif
};
-#endif //QT_LINUX_FUTEX
#ifdef Q_OS_UNIX