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