Index: sources/threads.cpp =================================================================== diff -u -rb798668f16ad0967ab97e96f5f9a2cdd821e899f -r56e378f7504701b9e9a9dccaf205aef2fd52c58e --- sources/threads.cpp (.../threads.cpp) (revision b798668f16ad0967ab97e96f5f9a2cdd821e899f) +++ sources/threads.cpp (.../threads.cpp) (revision 56e378f7504701b9e9a9dccaf205aef2fd52c58e) @@ -2,13 +2,14 @@ * * Copyright (c) 2019-2020 Diality Inc. - All Rights Reserved. * \copyright - * THIS CODE MAY NOT BE COPIED OR REPRODUCED IN ANY FORM, - * IN PART OR IN WHOLE, - * WITHOUT THE EXPLICIT PERMISSION OF THE COPYRIGHT OWNER. + * THIS CODE MAY NOT BE COPIED OR REPRODUCED IN ANY FORM, IN PART OR IN + * WHOLE, WITHOUT THE EXPLICIT PERMISSION OF THE COPYRIGHT OWNER. * - * \file threads.cpp - * \date 1/6/2020 - * \author Behrouz NematiPour + * \file threads.cpp + * \author (last) Behrouz NematiPour + * \date (last) 30-Jul-2020 + * \author (original) Behrouz NematiPour + * \date (original) 07-Jan-2020 * */ #include "threads.h" @@ -28,12 +29,12 @@ * this has currently been done in main.cpp in main() after the qpp.exe() is done. */ namespace Threads { - QThread _CanFrame_Thread ; - QThread _CanAcknow_Thread ; - QThread _CanMessage_Thread ; - QThread _USBWatcher_Thread ; - QThread _Logger_Thread ; - QThread _Application_Thread ; + QThread _CanFrame_Thread ; + QThread _CanAcknow_Thread ; + QThread _CanMessage_Thread ; + QThread _DriveWatcher_Thread ; + QThread _Logger_Thread ; + QThread _Application_Thread ; /*! * \brief registerTypes @@ -85,12 +86,12 @@ { // 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(_USBWatcher_Thread ); // validated - quitThread(_Logger_Thread ); // validated - quitThread(_Application_Thread ); // validated + quitThread(_CanFrame_Thread ); // validated + quitThread(_CanAcknow_Thread ); // validated + quitThread(_CanMessage_Thread ); // validated + quitThread(_DriveWatcher_Thread ); // validated + quitThread(_Logger_Thread ); // validated + quitThread(_Application_Thread ); // validated } // coco end }