This question has already been answered:
Hello to all! How to debug multithreaded programs in Qt? Are there any examples or information for consideration?
This question has already been answered:
Hello to all! How to debug multithreaded programs in Qt? Are there any examples or information for consideration?
A similar question was asked earlier and an answer has already been received. If the answers provided are not exhaustive, please ask a new question .
The best way to debug such programs is detailed logging. Because with a debugger, some combinations of states will be impossible to catch.
Additional ways:
assert()
Source: https://ru.stackoverflow.com/questions/545050/
All Articles