summaryrefslogtreecommitdiff
path: root/include/threadengine.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/threadengine.h')
-rw-r--r--include/threadengine.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/include/threadengine.h b/include/threadengine.h
index 7d7c2dc70..7e59cc117 100644
--- a/include/threadengine.h
+++ b/include/threadengine.h
@@ -16,11 +16,11 @@
class CoreExport Thread : public Pipe, public Extensible
{
- private:
+private:
/* Set to true to tell the thread to finish and we are waiting for it */
bool exit = false;
- public:
+public:
/* Handle for this thread */
pthread_t handle;
@@ -60,11 +60,11 @@ class CoreExport Thread : public Pipe, public Extensible
class CoreExport Mutex
{
- protected:
+protected:
/* A mutex, used to keep threads in sync */
pthread_mutex_t mutex;
- public:
+public:
/** Constructor
*/
Mutex();
@@ -90,11 +90,11 @@ class CoreExport Mutex
class CoreExport Condition : public Mutex
{
- private:
+private:
/* A condition */
pthread_cond_t cond;
- public:
+public:
/** Constructor
*/
Condition();