I have a threaded application in which main thread is the gui thread and the secondary thread is the one doing major computing inside nested for loops. Now the problem is how to terminate the secondary thread. When I press the stop button on the GUI thread it called a slot in the secondary thread which sets the stop variable to true. Problem with this technique is that, testing stop variable in for loops (as shown below) is not enough. Because if pressed the stop button just after thread has entered the third for loop, it will execute all lengthy functions before it will check the stop flag. Thats why we need to test it in each function before executing its contents, which I think is not not a very elegant solution. I cannot call terminate on this thread as this thread allocates some decent amount of memory of memory and calling terminate will cause that memory to leak.
So for such a scenario what would be the best way to terminate the thread and any point?
Following code skeleton is just to give you and idea of what I/m talking about
void run( ) {
for(int i = 0; i < 4 && !stop; i++) {
for(int j = 0; j < 3 && !stop; j++) {
for(int k; k < 6 && !stop; k++) {
callA( );
callB( );
callC( );
callD( );
callE( );
callF( );
callF( );
callG( );
}
}
}
}
callA( ) { callL( ); }
callB( ) { callM( ); }
callC( ) { callN( ); }
callD( ) { callO( ); }
callE( ) { callP( ); }
callF( ) { callQ( ); }
callF( ) { callR( ); }
callG( ) { callS( ); }
callL( ) { sleep(20); }
callM( ) { sleep(60); }
callN( ) { QProcess( ); }
callO( ) { sleep(30);}
callP( ) { QProcess( ); }
callQ( ) { }
callR( ) { sleep(60); }
callS( ) { QProcess( ); }