aboutsummaryrefslogtreecommitdiffstats
path: root/src/checks/level3/README-thread-with-slots.md
blob: 0643364c8ed11af7c9cf78d495a32054b5f7a0d5 (plain)
1
2
3
4
5
6
7
8
# 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.