aboutsummaryrefslogtreecommitdiffstats
path: root/src/engine/Slave.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/engine/Slave.hpp')
-rw-r--r--src/engine/Slave.hpp8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/engine/Slave.hpp b/src/engine/Slave.hpp
index e08fb71..55701a7 100644
--- a/src/engine/Slave.hpp
+++ b/src/engine/Slave.hpp
@@ -27,12 +27,14 @@ namespace machina {
* Use this to perform some task in a separate thread you want to 'drive'
* from a realtime (or otherwise) thread.
*/
-class Slave
- : public Raul::Thread
+class Slave : public Raul::Thread
{
public:
Slave() : _whip(0) {}
- ~Slave() { _exit_flag = true; _whip.post(); }
+ ~Slave() {
+ _exit_flag = true;
+ _whip.post();
+ }
virtual void join() {
_exit_flag = true;