Is it possible to set priority to the main GUI thread so it has higher priority comparing to the other threads (QThread)?
My aim is to not to freeze up the GUI while the other threads are doing some intensive computation which may occupy CPU to 100% load. It would be great if someone can share a way to make sure GUI will not freeze during this period while the other computation threads can still try to maximize the CPU usage.
I thought about managing other threads, so I don't start too many computation threads at the same time.