diff options
| author | 2021-01-11 14:36:26 -0800 | |
|---|---|---|
| committer | 2021-01-11 14:36:26 -0800 | |
| commit | eb3cb54aa53e23af61afb9b7e35af28c9d37ae2a (patch) | |
| tree | 56a80760bd0ba8ecd85dc8d9f09fb9e2068c91d4 /src/core/hle/kernel/kernel.h | |
| parent | Merge pull request #5229 from Morph1984/fullscreen-opt (diff) | |
| parent | hle: kernel: thread: Preserve thread wait reason for debugging only. (diff) | |
| download | yuzu-eb3cb54aa53e23af61afb9b7e35af28c9d37ae2a.tar.gz yuzu-eb3cb54aa53e23af61afb9b7e35af28c9d37ae2a.tar.xz yuzu-eb3cb54aa53e23af61afb9b7e35af28c9d37ae2a.zip | |
Merge pull request #5266 from bunnei/kernel-synch
Rewrite KSynchronizationObject, KConditonVariable, and KAddressArbiter
Diffstat (limited to 'src/core/hle/kernel/kernel.h')
| -rw-r--r-- | src/core/hle/kernel/kernel.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/core/hle/kernel/kernel.h b/src/core/hle/kernel/kernel.h index e3169f5a7..933d9a7d6 100644 --- a/src/core/hle/kernel/kernel.h +++ b/src/core/hle/kernel/kernel.h | |||
| @@ -33,7 +33,6 @@ template <typename T> | |||
| 33 | class SlabHeap; | 33 | class SlabHeap; |
| 34 | } // namespace Memory | 34 | } // namespace Memory |
| 35 | 35 | ||
| 36 | class AddressArbiter; | ||
| 37 | class ClientPort; | 36 | class ClientPort; |
| 38 | class GlobalSchedulerContext; | 37 | class GlobalSchedulerContext; |
| 39 | class HandleTable; | 38 | class HandleTable; |
| @@ -129,12 +128,6 @@ public: | |||
| 129 | /// Gets the an instance of the current physical CPU core. | 128 | /// Gets the an instance of the current physical CPU core. |
| 130 | const Kernel::PhysicalCore& CurrentPhysicalCore() const; | 129 | const Kernel::PhysicalCore& CurrentPhysicalCore() const; |
| 131 | 130 | ||
| 132 | /// Gets the an instance of the Synchronization Interface. | ||
| 133 | Kernel::Synchronization& Synchronization(); | ||
| 134 | |||
| 135 | /// Gets the an instance of the Synchronization Interface. | ||
| 136 | const Kernel::Synchronization& Synchronization() const; | ||
| 137 | |||
| 138 | /// Gets the an instance of the TimeManager Interface. | 131 | /// Gets the an instance of the TimeManager Interface. |
| 139 | Kernel::TimeManager& TimeManager(); | 132 | Kernel::TimeManager& TimeManager(); |
| 140 | 133 | ||