diff options
| author | 2024-02-06 23:09:43 -0500 | |
|---|---|---|
| committer | 2024-02-07 12:14:46 -0500 | |
| commit | 9404633bfd1e4ea23ccf8ef526b2b4c564ba512d (patch) | |
| tree | fe37bb0acf2383ecc625f3c278000ba5869ccbaa /src/core/hle/service/event.h | |
| parent | Merge pull request #12883 from FernandoS27/memory_manager_mem (diff) | |
| download | yuzu-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.h | 31 |
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 | |||
| 6 | namespace Kernel { | ||
| 7 | class KEvent; | ||
| 8 | class KReadableEvent; | ||
| 9 | } // namespace Kernel | ||
| 10 | |||
| 11 | namespace Service { | ||
| 12 | |||
| 13 | namespace KernelHelpers { | ||
| 14 | class ServiceContext; | ||
| 15 | } | ||
| 16 | |||
| 17 | class Event { | ||
| 18 | public: | ||
| 19 | explicit Event(KernelHelpers::ServiceContext& ctx); | ||
| 20 | ~Event(); | ||
| 21 | |||
| 22 | void Signal(); | ||
| 23 | void Clear(); | ||
| 24 | |||
| 25 | Kernel::KReadableEvent* GetHandle(); | ||
| 26 | |||
| 27 | private: | ||
| 28 | Kernel::KEvent* m_event; | ||
| 29 | }; | ||
| 30 | |||
| 31 | } // namespace Service | ||