diff options
| author | 2020-02-11 17:36:39 -0400 | |
|---|---|---|
| committer | 2020-02-11 18:47:31 -0400 | |
| commit | d23d504d776007c1244a85ac1b7bb67c407067b2 (patch) | |
| tree | d6e992004bf752819084d648ca8b81fd1fc1db18 /src/core/hle/kernel/synchronization.h | |
| parent | Kernel: Change WaitObject to Synchronization object. In order to better refle... (diff) | |
| download | yuzu-d23d504d776007c1244a85ac1b7bb67c407067b2.tar.gz yuzu-d23d504d776007c1244a85ac1b7bb67c407067b2.tar.xz yuzu-d23d504d776007c1244a85ac1b7bb67c407067b2.zip | |
Kernel: Refactor synchronization to better match RE
Diffstat (limited to 'src/core/hle/kernel/synchronization.h')
| -rw-r--r-- | src/core/hle/kernel/synchronization.h | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/src/core/hle/kernel/synchronization.h b/src/core/hle/kernel/synchronization.h new file mode 100644 index 000000000..3417a9f13 --- /dev/null +++ b/src/core/hle/kernel/synchronization.h | |||
| @@ -0,0 +1,34 @@ | |||
| 1 | // Copyright 2020 yuzu Emulator Project | ||
| 2 | // Licensed under GPLv2 or any later version | ||
| 3 | // Refer to the license.txt file included. | ||
| 4 | |||
| 5 | #pragma once | ||
| 6 | |||
| 7 | #include <memory> | ||
| 8 | #include <utility> | ||
| 9 | |||
| 10 | #include "core/hle/kernel/object.h" | ||
| 11 | #include "core/hle/result.h" | ||
| 12 | |||
| 13 | namespace Core { | ||
| 14 | class System; | ||
| 15 | } // namespace Core | ||
| 16 | |||
| 17 | namespace Kernel { | ||
| 18 | |||
| 19 | class KernelCore; | ||
| 20 | class SynchronizationObject; | ||
| 21 | |||
| 22 | class Synchronization { | ||
| 23 | public: | ||
| 24 | Synchronization(Core::System& system); | ||
| 25 | |||
| 26 | void SignalObject(SynchronizationObject& obj) const; | ||
| 27 | |||
| 28 | std::pair<ResultCode, Handle> WaitFor( | ||
| 29 | std::vector<std::shared_ptr<SynchronizationObject>>& sync_objects, s64 nano_seconds); | ||
| 30 | |||
| 31 | private: | ||
| 32 | Core::System& system; | ||
| 33 | }; | ||
| 34 | } // namespace Kernel | ||