summaryrefslogtreecommitdiff
path: root/src/core/hle/service/event.h
diff options
context:
space:
mode:
authorGravatar Liam2024-02-06 23:09:43 -0500
committerGravatar Liam2024-02-07 12:14:46 -0500
commit9404633bfd1e4ea23ccf8ef526b2b4c564ba512d (patch)
treefe37bb0acf2383ecc625f3c278000ba5869ccbaa /src/core/hle/service/event.h
parentMerge pull request #12883 from FernandoS27/memory_manager_mem (diff)
downloadyuzu-9404633bfd1e4ea23ccf8ef526b2b4c564ba512d.tar.gz
yuzu-9404633bfd1e4ea23ccf8ef526b2b4c564ba512d.tar.xz
yuzu-9404633bfd1e4ea23ccf8ef526b2b4c564ba512d.zip
service: add os types and multi wait API
Diffstat (limited to 'src/core/hle/service/event.h')
-rw-r--r--src/core/hle/service/event.h31
1 files changed, 0 insertions, 31 deletions
diff --git a/src/core/hle/service/event.h b/src/core/hle/service/event.h
deleted file mode 100644
index cdbc4635a..000000000
--- a/src/core/hle/service/event.h
+++ /dev/null
@@ -1,31 +0,0 @@
1// SPDX-FileCopyrightText: Copyright 2024 yuzu Emulator Project
2// SPDX-License-Identifier: GPL-2.0-or-later
3
4#pragma once
5
6namespace Kernel {
7class KEvent;
8class KReadableEvent;
9} // namespace Kernel
10
11namespace Service {
12
13namespace KernelHelpers {
14class ServiceContext;
15}
16
17class Event {
18public:
19 explicit Event(KernelHelpers::ServiceContext& ctx);
20 ~Event();
21
22 void Signal();
23 void Clear();
24
25 Kernel::KReadableEvent* GetHandle();
26
27private:
28 Kernel::KEvent* m_event;
29};
30
31} // namespace Service