Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a Qt application written in PySide (Qt Python binding). This application has a GUI thread and many different QThreads that are in charge of performing some heavy lifting - some rather long tasks. As such long task sometimes gets stuck (usually because it is waiting for a server response), the application sometimes freezes.

I was therefore wondering if it is safe to call QCoreApplication.processEvents() "manually" every second or so, so that the GUI event queue is cleared (processed)? Is that a good idea at all?

share|improve this question
1  
Why the main thread freezes if all work is done by other threads? – wRAR Feb 22 at 0:40
That's an excellent question, and I have no good answer. I once asked on the Qt forums and they said it was because the application is not processing any events, and that's why it appears that it is frozen. Might also have something to do with the fact that there are 100+ threads running at the same time. – Deusdies Feb 22 at 0:45
If the main thread is in the Qt event loop, it should process messages (unless your machine is too busy, but that is not directly related to your code). – wRAR Feb 22 at 0:51
Yes, it is in the event loop. But still, I have found that when calling processEvents() the application does NOT freeze - so is it safe to do so? – Deusdies Feb 22 at 1:00
What is your thread/cpu ratio? What would you expect to happen if ncpu threads all block waiting for I/O (this is a real question, I am not sure)? My guess would be what you are describing, the main thread never gets scheduled to clear it's event que and looks like it is frozen. – tcaswell Feb 22 at 1:15
show 11 more comments

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.