2022-04-23 04:59:50 -04:00
|
|
|
// SPDX-FileCopyrightText: Copyright 2020 yuzu Emulator Project
|
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2020-02-24 21:04:12 -05:00
|
|
|
|
|
|
|
#include "common/thread.h"
|
|
|
|
#include "core/arm/cpu_interrupt_handler.h"
|
|
|
|
|
|
|
|
namespace Core {
|
|
|
|
|
2020-08-25 21:19:01 -04:00
|
|
|
CPUInterruptHandler::CPUInterruptHandler() : interrupt_event{std::make_unique<Common::Event>()} {}
|
2020-02-24 21:04:12 -05:00
|
|
|
|
|
|
|
CPUInterruptHandler::~CPUInterruptHandler() = default;
|
|
|
|
|
|
|
|
void CPUInterruptHandler::SetInterrupt(bool is_interrupted_) {
|
|
|
|
if (is_interrupted_) {
|
|
|
|
interrupt_event->Set();
|
|
|
|
}
|
2020-08-25 21:19:01 -04:00
|
|
|
is_interrupted = is_interrupted_;
|
2020-02-24 21:04:12 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void CPUInterruptHandler::AwaitInterrupt() {
|
|
|
|
interrupt_event->Wait();
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace Core
|