Index: sources/Threads.cpp =================================================================== diff -u -r64d87d540594252e8039ab2595016d98f1e3cc28 -r7077e38c74db9cccb5496ffefcf8936c0916de76 --- sources/Threads.cpp (.../Threads.cpp) (revision 64d87d540594252e8039ab2595016d98f1e3cc28) +++ sources/Threads.cpp (.../Threads.cpp) (revision 7077e38c74db9cccb5496ffefcf8936c0916de76) @@ -35,6 +35,7 @@ QThread _DriveWatcher_Thread ; QThread _Logger_Thread ; QThread _Application_Thread ; + QThread _Wifi_Thread ; /*! * \brief registerTypes @@ -86,12 +87,13 @@ { // coco begin validated: Application termination is not correctly done in coco!!! // it has been tested and works perfectly fine in normal run. - quitThread(_CanFrame_Thread ); // validated - quitThread(_CanAcknow_Thread ); // validated - quitThread(_CanMessage_Thread ); // validated - quitThread(_DriveWatcher_Thread ); // validated - quitThread(_Logger_Thread ); // validated - quitThread(_Application_Thread ); // validated + quitThread(_CanFrame_Thread ); + quitThread(_CanAcknow_Thread ); + quitThread(_CanMessage_Thread ); + quitThread(_DriveWatcher_Thread ); + quitThread(_Logger_Thread ); + quitThread(_Wifi_Thread ); + quitThread(_Application_Thread ); } // coco end }