vote up 0 vote down star

QThread::terminate() states that it is discouraged to terminate a thread by calling this function. In my program, I need to terminate a thread before it finishes execution. The thread is performing some heavy computation and I want the user to have control to stop calculation. How can I do that instead of calling QThread::terminate()?

Thanks for your time.

flag

3 Answers

vote up 6 vote down check

Set a flag from outside the thread that is checked by the computation within the thread and stop the calculation if the flag is set.

link|flag
vote up 0 vote down

Hi Rocknroll, I come across the same problem and I am using the linux platform, please give me some advices. Thanks a lot.

link|flag
vote up 1 vote down

Using flags is an obvious and the most common way to do the trick, but if you are working on a linux/unix platform I would advise you to use pipes instead. I had the same issue where I used a flag (this makes the code threadunsafe, and bugs arising out of such a flag are hard to trace), then I changed the implementation to use pipes which were an efficient way to do the needful.

If you want, for a linux platform I can show you how to use pipes to terminate a QThread.

You may also have windows equivalent of pipes, which I don't know much about as I haven't done much of programming on Windows platform.

Hope this helps

link|flag
I'm in Windows platform and I have no knowledge about pipes. – Donotalo Aug 29 at 11:36
@Donotalo, Pipes are a form of Interprocess communication (IPC), as the names suggests, it is used to communicate between threads. I used pipes to eliminate certain synchronisation issues that cropped up with the use of singleton pattern(or antipattern I should say :-) ). – rocknroll Sep 1 at 5:11

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.