How to give highest priority to events generated from main thread than those generated from secondar
- by martjno
I have a c++ application written in wxWidgets, which has a main thread (GUI) and a working thread (calculations).
The working thread executes commands requested by the main thread and communicates the result to the main thread posting an event after every step of the processing.
The problem is that when the working thread is sending many events…