aboutsummaryrefslogtreecommitdiff
path: root/include/threadengine.h
diff options
context:
space:
mode:
authorGravatar Attila Molnar2014-06-24 12:54:05 +0200
committerGravatar Attila Molnar2014-06-24 12:54:05 +0200
commita77b9081d4e17bfe8b887073c09d531b2f4c4842 (patch)
tree0fda17ee02ddbaefeb8e62922f1348edcd8f5a72 /include/threadengine.h
parentMove and rename ThreadData::FreeThread() to ThreadEngine::Stop() and document... (diff)
Move and rename class ThreadData to ThreadEngine::ThreadState
Diffstat (limited to 'include/threadengine.h')
-rw-r--r--include/threadengine.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/include/threadengine.h b/include/threadengine.h
index 032da1539..1b4ee1541 100644
--- a/include/threadengine.h
+++ b/include/threadengine.h
@@ -26,8 +26,6 @@
#include "config.h"
#include "base.h"
-class ThreadData;
-
/** Derive from this class to implement your own threaded sections of
* code. Be sure to keep your code thread-safe and not prone to deadlocks
* and race conditions if you MUST use threading!
@@ -41,7 +39,7 @@ class CoreExport Thread
/** Opaque thread state managed by the ThreadEngine
*/
- ThreadData state;
+ ThreadEngine::ThreadState state;
/** ThreadEngine manages Thread::state
*/