Skip to content

Latest commit

 

History

History
8 lines (6 loc) · 324 Bytes

README-thread-with-slots.md

File metadata and controls

8 lines (6 loc) · 324 Bytes

thread-with-slots

slots in a QThread derived class are usually a code smell, because they'll run in the thread where the QThread QObject lives and not in the thread itself.

Disabled by default since it's very hard to avoid for false-positives. You'll have to explicitly enable it and check case by case for races.