Index: sources/Threads.cpp =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/Threads.cpp (.../Threads.cpp) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/Threads.cpp (.../Threads.cpp) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -71,13 +71,9 @@ */ void quitThread(QThread &vThread) { - // disabled coco begin validated: Application termination is not correctly done in coco!!! - // it has been tested and works perfectly fine in normal run. - // runs in main thread vThread.quit(); // validated vThread.wait(); // validated } - // disabled coco end /*! * \brief quitThreads @@ -87,8 +83,6 @@ */ void quitThreads() { - // disabled coco begin validated: Application termination is not correctly done in coco!!! - // it has been tested and works perfectly fine in normal run. quitThread(_CloudSync_Thread ); quitThread(_CanFrame_Thread ); quitThread(_CanAcknow_Thread ); @@ -100,5 +94,4 @@ quitThread(_Gui_Thread ); quitThread(_Logger_Thread ); } - // disabled coco end }