Cleaning up after a thread correcly
Page |
1 |
Hello guys, :)
I’m tired of trying to learn how to start and delete a thread correctly without residuals or problems. I posted other problems with this program before, and to make the thing easier to solve, please download a copy of the source from the following link.
The program is a down-sampler. It simply reads a few blocks of a file, calculates the average, and writes the result. The purpose is simply making files smaller.
http://www.4shared.com/file/Lh2KqF0Q/DownSampler.html
The problem is, that whenever the start button and stop are clicked a few times, the program freezes. This happens now in Linux, but I don’t know if this happens in windows too. I think it does.
The program is compilable under windows and linux.
Please guide me to the method to fix this problem. I tried calling QThread::quit(), exit(), terminate() with a deleteLater()… but all cause problems… with no exception! please tell me how to do this correctly.
Thank you :-)
41 replies
first of all, in my opinion, using of quit() [doc.qt.nokia.com], exit() [doc.qt.nokia.com], terminate() [doc.qt.nokia.com] for threads is a bad style.
You should design interaction with/within thread to avoid their use by any cost. Terminate() allowed to be only in destructors or functions with the same aim as destructor, where the immediate termination of thread is really necessary and reasonable.
The preferable way – to foresee all quit point for thread and put there only return; statement.
The second part is a code snippet overview
- downsamplingthread.cpp
- this->terminate();
- this->exit();
- this->quit();
- return;
why is there so much thread-stopping functions? It’s quite enough to use one of them. I advice to read manual about each of them.
- if(outputTypeString == "int16")
- {
- ...
- }
- else if(outputTypeString == "int32")
- {
- ...
- }
- else if(outputTypeString == "int64")
- {
- ...
- }
use switch ()
The problem is, that whenever the start button and stop are clicked a few times, the program freezes.
you are using new to create new [cplusplus.com] thread and forgot about delete [cplusplus.com] delete/ -> they block each other.
Thank you for your reply.
You’re right about the switch thingy. I’ll use it! and about exit and quit, what should I use instead????
but concerning the new and delete commands… whenever I try to delete the thread, the program freezes! have you succeeded with that yourself? because I tried that like 10000 times with different methods with no success, and that’s why I’m asking about a plan to clean up the thread professionally.
So how can I use delete without quit()? please try it and you’ll see how the program freezes!!!!
If you know the way to go around this and use the thread cleanly, please tell me!
if(outputTypeString == "int16") { ... } else if(outputTypeString == "int32") { ... } else if(outputTypeString == "int64") { ... }
use switch ()
The switch statement only works on integer constants, not on (c-)strings.
If you know the way to go around this and use the thread cleanly, please tell me!
Make sure you react properly to exiting. Use exit() only if you properly handle that. Don’t use terminate() unless you have a good reason to terminate it.
I would always go with a
- connect(myThread, SIGNAL(finished()), myThread, SLOT(deleteLater()));
- myThread->stopWorking();
This will delete your thread after it has finished its work. Only thing to do now is to make sure your main thread stays alive long enough to delete the thread object.
Thank you for the answers guys. Sorry for the late reply, but my laptop got a problem and I had to format it!
What do you mean with properly handle exiting? In the program, when the user clicks start, the thread is created, and the error could be issued in the thread immediately if the files don’t exist, or if the user clicks the Stop button! So how could I handle exit() correctly here? is it just by issuing exit() on error? cuz this is what I’m doing. If the user clicks start again, a new thread is created and the old one is “lost” in memory… The problem is, as far as I see it, is that deleting threads take relatively long time. Isn’t that true?
so I can’t tell the user “please wait till the thread is deleted”.
I’m thinking that since deleting threads takes long time, would it be a feasible solution to use a thread pool, in a way that whenever a thread fails, it’s ignored by the program and handled by the pool for deletion, so that I could take another new thread from the pool when the user clicks Start again?
If the user clicks start again, a new thread is created and the old one is “lost” in memory… The problem is, as far as I see it, is that deleting threads take relatively long time. Isn’t that true?
please define relatively long? The user recognizes it? Then it’s a bug in your code. You could have something like:
- MyThread::run()
- {
- // do something
- if(m_bStopThread)
- return;
- // do something
- if(m_bStopThread)
- return;
- // do something
- if(m_bStopThread)
- return;
- // do something
- if(m_bStopThread)
- return;
- }
- MyThreda::StopThread()
- {
- m_bStopThread = true;
- }
Thank you for your answers, guys!
@Franzk: QtConcurrent is very limited. It doesn’t help my general purposes. I’m more interested in learning QThread.
@Gerolf: So interestingly, Gerolf, I have the same idea in the code of my first post. Please check the program of my first post. It’s a very small program. You can see that I try to use this “stop” idea exactly the same way you mentioned it, but I can’t find the place where I have to place the delete thread statement. Whenever I introduce a thread deletion, the program freezes!!!! please take a look at the program code in my first post!
I would not call deleteLater on a QThread that is still running. Sounds like a recipe for all kinds of funny things to happen when you don’t expect it.
Edit:
What might be a good approach, is something like this:
- connect(myThread, SIGNAL(finished()), myThread, SLOT(deleteLater()));
- myThread->stopThisThread();
- myThread = 0;
I would not call deleteLater on a QThread that is still running. Sounds like a recipe for all kinds of funny things to happen when you don’t expect it.
Neither would I. I was referring to what I’ve stated earlier:
- connect(myThread, SIGNAL(finished()), myThread, SLOT(deleteLater()));
Edit: My point exactly :P
Ah, sorry, missed your previous suggestion for the same idea. I would put the connect call before the stop call though. Otherwise, you might get into a race condition where the thread is already stopped before the connection has been made. Then again, you should probably make the connection at creation time for the thread anyway, not when you want to stop it.
I would not call deleteLater on a QThread that is still running. Sounds like a recipe for all kinds of funny things to happen when you don’t expect it.Edit:
What might be a good approach, is something like this:
connect(myThread, SIGNAL(finished()), myThread, SLOT(deleteLater())); myThread->stopThisThread(); myThread = 0;
This can also lead to unexpected behavior. You call delete in the main thread when the event loop comes to this point. While it reaches this, the thread could be suspended (depends on timing) or be finished, even if the emit is the last command in the run method.
EDIT:
So you would need a wait in the destructor of the thread….
You must log in to post a reply. Not a member yet? Register here!


