I am trying to implement a QObject class which executes a script having a series of wget commands. This object is running in a thread as shown in code below:
objUpdater->moveToThread(&UpdaterThread);
//Once thread starts it should start the update
objUpdater->connect(&UpdaterThread, SIGNAL(started()), SLOT(ResumeUpdate()));
// when the Update is done, it stops its thread
UpdaterThread.connect(objUpdater, SIGNAL(finishedUpdating()), SLOT(quit()));
connect(objUpdater, SIGNAL(finishedAdUpdate()), SLOT(checkNewAdUpdate()), Qt::DirectConnection);
//Start the update
UpdaterThread.start();
I want to force terminate this thread for which wrote following code:
//Stop an ongoing update (if any)
if(objUpdater != NULL)
{ //Stop an ongoing update (if any)
if(objUpdater != NULL)
{
qDebug("INSIDE objUpdater:::not NULL\n");
objUpdater->deleteLater(); //delete executing update
objUpdater = NULL;
}
if(UpdaterThread.isRunning())
{
UpdaterThread.exit(0);
}
}
The thread does not terminate. Is there any other way to force terminate a thread?
- Instead of terminating the thread, would it be better to making thread sleep and then wakeup using signals.