From 71d85bf1f80052efbcef2718997f4b937169ea8c Mon Sep 17 00:00:00 2001
From: vahrenkamp <vahrenkamp@042f3d55-54a8-47e9-b7fb-15903f145c44>
Date: Mon, 31 Mar 2014 08:18:20 +0000
Subject: [PATCH] Fixed PostProcessingThread. Thread bool was never set to
 finished.

git-svn-id: http://svn.code.sf.net/p/simox/code/trunk@545 042f3d55-54a8-47e9-b7fb-15903f145c44
---
 MotionPlanning/PostProcessing/PathProcessingThread.cpp | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/MotionPlanning/PostProcessing/PathProcessingThread.cpp b/MotionPlanning/PostProcessing/PathProcessingThread.cpp
index 6e1940a0e..e414a28d0 100644
--- a/MotionPlanning/PostProcessing/PathProcessingThread.cpp
+++ b/MotionPlanning/PostProcessing/PathProcessingThread.cpp
@@ -100,6 +100,9 @@ void PathProcessingThread::workingMethod()
 		processingFinished = false;
 
 	resultPath = res;
+
+    // the thread ends here
+    threadStarted = false;
 	mutex.unlock();
 }
 
-- 
GitLab