Am 03.11.2022 um 11:21 schrieb Dennis Luehring:
im usually testing all my projects with ASAN and TSAN - all the non-Qt
unit tests are clean
ASAN is near to silent with my Qt tests but TSAN is giving a lot of warnings

...

damn - i have not put in my thread-shutdown code - very very sorry for
putting up a half-working example

after app.exec() the thread shutdown is missing

    int result = app.exec();

    if(my_thread1.joinable())
    {
        my_thread1.join();
    }
_______________________________________________
Interest mailing list
Interest@qt-project.org
https://lists.qt-project.org/listinfo/interest

Reply via email to