Browse Source

cpu_interrupt_handler: Misc style changes

nce_cpp
ReinUsesLisp 5 years ago
parent
commit
ad0306e520
  1. 6
      src/core/arm/cpu_interrupt_handler.cpp
  2. 2
      src/core/arm/cpu_interrupt_handler.h

6
src/core/arm/cpu_interrupt_handler.cpp

@ -7,9 +7,7 @@
namespace Core {
CPUInterruptHandler::CPUInterruptHandler() {
interrupt_event = std::make_unique<Common::Event>();
}
CPUInterruptHandler::CPUInterruptHandler() : interrupt_event{std::make_unique<Common::Event>()} {}
CPUInterruptHandler::~CPUInterruptHandler() = default;
@ -17,7 +15,7 @@ void CPUInterruptHandler::SetInterrupt(bool is_interrupted_) {
if (is_interrupted_) {
interrupt_event->Set();
}
this->is_interrupted = is_interrupted_;
is_interrupted = is_interrupted_;
}
void CPUInterruptHandler::AwaitInterrupt() {

2
src/core/arm/cpu_interrupt_handler.h

@ -33,8 +33,8 @@ public:
void AwaitInterrupt();
private:
std::atomic_bool is_interrupted{false};
std::unique_ptr<Common::Event> interrupt_event;
std::atomic_bool is_interrupted{false};
};
} // namespace Core
Loading…
Cancel
Save