summaryrefslogtreecommitdiffstats
path: root/src/corelib/thread/qthread_p.h
diff options
context:
space:
mode:
authorOlivier Goffart <ogoffart@kde.org>2011-10-28 12:01:32 +0200
committerQt by Nokia <qt-info@nokia.com>2011-10-28 22:20:22 +0200
commit1c029324bc4ae8c754f259f1498974ab2a4bdc72 (patch)
tree7532c9f488bc01c95ed3664e4a712df694176a44 /src/corelib/thread/qthread_p.h
parent96e032c8ced3a043a1ca3230639f49d132614dee (diff)
Remove symbian threading primitive.
Those are already outdated and do not compile anymore (QMutex has changed too much) Better to remove that dead code so it do not show up in grep anymore Change-Id: I096e7a73e23cbb77050843c2e1c10929086fdb8f Reviewed-by: Lars Knoll <lars.knoll@nokia.com> Reviewed-by: Bradley T. Hughes <bradley.hughes@nokia.com>
Diffstat (limited to 'src/corelib/thread/qthread_p.h')
-rw-r--r--src/corelib/thread/qthread_p.h13
1 files changed, 1 insertions, 12 deletions
diff --git a/src/corelib/thread/qthread_p.h b/src/corelib/thread/qthread_p.h
index 461d93dd50..04f9bf23cf 100644
--- a/src/corelib/thread/qthread_p.h
+++ b/src/corelib/thread/qthread_p.h
@@ -62,9 +62,6 @@
#include "QtCore/qmap.h"
#include "private/qobject_p.h"
-#ifdef Q_OS_SYMBIAN
-#include <e32base.h>
-#endif
QT_BEGIN_NAMESPACE
@@ -162,11 +159,7 @@ public:
QWaitCondition thread_done;
static void *start(void *arg);
-#if defined(Q_OS_SYMBIAN)
- static void finish(void *arg, bool lockAnyway=true, bool closeNativeHandle=true);
-#else
static void finish(void *);
-#endif
#endif // Q_OS_UNIX
@@ -179,7 +172,7 @@ public:
static void finish(void *, bool lockAnyway=true);
#endif // Q_OS_WIN32
-#if defined(Q_OS_WIN32) || defined(Q_OS_WINCE) || defined (Q_OS_SYMBIAN)
+#if defined(Q_OS_WIN32) || defined(Q_OS_WINCE)
bool terminationEnabled, terminatePending;
# endif
QThreadData *data;
@@ -232,10 +225,6 @@ public:
bool canWait;
QVector<void *> tls;
bool isAdopted;
-
-# ifdef Q_OS_SYMBIAN
- RThread symbian_thread_handle;
-# endif
};
// thread wrapper for the main() thread