summaryrefslogtreecommitdiffstats
path: root/src/core/arm/cpu_interrupt_handler.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/arm/cpu_interrupt_handler.h')
-rw-r--r--src/core/arm/cpu_interrupt_handler.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/arm/cpu_interrupt_handler.h b/src/core/arm/cpu_interrupt_handler.h
index 3d062d326..71e582f79 100644
--- a/src/core/arm/cpu_interrupt_handler.h
+++ b/src/core/arm/cpu_interrupt_handler.h
@@ -4,6 +4,7 @@
#pragma once
+#include <atomic>
#include <memory>
namespace Common {
@@ -32,8 +33,8 @@ public:
void AwaitInterrupt();
private:
- bool is_interrupted{};
std::unique_ptr<Common::Event> interrupt_event;
+ std::atomic_bool is_interrupted{false};
};
} // namespace Core