summaryrefslogtreecommitdiff
path: root/examples/triage/exports.h
diff options
context:
space:
mode:
authorJordan Wiens <github@psifertex.com>2025-12-19 15:57:20 -0500
committerJordan Wiens <github@psifertex.com>2025-12-19 16:05:02 -0500
commit34622adc292cb10b84c7984fc0cef966ee2c19b7 (patch)
treeb08efae7118bbc20ffbd4f0b4a25bb8ae3d7e42a /examples/triage/exports.h
parentdbdf3381e2dd32527cffaca6081fc5a9913f1cc7 (diff)
fix strings missing race condition
Diffstat (limited to 'examples/triage/exports.h')
-rw-r--r--examples/triage/exports.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/examples/triage/exports.h b/examples/triage/exports.h
index aeca67e0..af0f4613 100644
--- a/examples/triage/exports.h
+++ b/examples/triage/exports.h
@@ -22,6 +22,8 @@ class GenericExportsModel : public QAbstractItemModel, public BinaryNinja::Binar
std::atomic<bool> m_updatesPaused = false;
// Read/written from arbitrary threads while processing notifications.
std::atomic<bool> m_needsUpdate = true;
+ // Tracks if notifications arrived while paused
+ std::atomic<bool> m_dirtyWhilePaused = false;
void performSort(int col, Qt::SortOrder order);
void updateModel();