diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2021-10-18 06:13:12 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2021-10-18 06:13:30 +0200 |
commit | f6e793af0dfde09e5dc5712c132fe6e4865738ef (patch) | |
tree | d95bff62601ef047897bd4fad0121a532e54d87d /tracker-pt/ftnoir_tracker_pt.h | |
parent | 54430acd4fb00b55b618110f60a0803448b09b13 (diff) |
tracker/pt: fix the deadlock even harder
Diffstat (limited to 'tracker-pt/ftnoir_tracker_pt.h')
-rw-r--r-- | tracker-pt/ftnoir_tracker_pt.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tracker-pt/ftnoir_tracker_pt.h b/tracker-pt/ftnoir_tracker_pt.h index c9b87102..bb388d5c 100644 --- a/tracker-pt/ftnoir_tracker_pt.h +++ b/tracker-pt/ftnoir_tracker_pt.h @@ -49,10 +49,12 @@ struct Tracker_PT : QThread, ITracker private: void run() override; + [[nodiscard]] bool check_camera(); pointer<pt_runtime_traits> traits; mutable QRecursiveMutex camera_mtx; + QString last_camera_name; PointTracker point_tracker; |