summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/svc/svc_interrupt_event.cpp
blob: 768b30a1fda5070b695fd9473c8c73c73316d56c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// SPDX-FileCopyrightText: Copyright 2023 yuzu Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later

#include "core/hle/kernel/svc.h"
#include "core/hle/kernel/svc_results.h"

namespace Kernel::Svc {

Result CreateInterruptEvent(Core::System& system, Handle* out, int32_t interrupt_id,
                            InterruptType type) {
    UNIMPLEMENTED();
    R_THROW(ResultNotImplemented);
}

Result CreateInterruptEvent64(Core::System& system, Handle* out_read_handle, int32_t interrupt_id,
                              InterruptType interrupt_type) {
    R_RETURN(CreateInterruptEvent(system, out_read_handle, interrupt_id, interrupt_type));
}

Result CreateInterruptEvent64From32(Core::System& system, Handle* out_read_handle,
                                    int32_t interrupt_id, InterruptType interrupt_type) {
    R_RETURN(CreateInterruptEvent(system, out_read_handle, interrupt_id, interrupt_type));
}

} // namespace Kernel::Svc