diff options
| author | Jordan Wiens <github@psifertex.com> | 2025-12-19 15:57:20 -0500 |
|---|---|---|
| committer | Jordan Wiens <github@psifertex.com> | 2025-12-19 16:05:02 -0500 |
| commit | 34622adc292cb10b84c7984fc0cef966ee2c19b7 (patch) | |
| tree | b08efae7118bbc20ffbd4f0b4a25bb8ae3d7e42a /examples/triage/exports.h | |
| parent | dbdf3381e2dd32527cffaca6081fc5a9913f1cc7 (diff) | |
fix strings missing race condition
Diffstat (limited to 'examples/triage/exports.h')
| -rw-r--r-- | examples/triage/exports.h | 2 |
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(); |
