diff options
Diffstat (limited to 'src/core/hle/kernel/kernel.cpp')
| -rw-r--r-- | src/core/hle/kernel/kernel.cpp | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/src/core/hle/kernel/kernel.cpp b/src/core/hle/kernel/kernel.cpp index 04ea9349e..4d224d01d 100644 --- a/src/core/hle/kernel/kernel.cpp +++ b/src/core/hle/kernel/kernel.cpp | |||
| @@ -87,7 +87,7 @@ static void ThreadWakeupCallback(u64 thread_handle, [[maybe_unused]] int cycles_ | |||
| 87 | } | 87 | } |
| 88 | 88 | ||
| 89 | struct KernelCore::Impl { | 89 | struct KernelCore::Impl { |
| 90 | explicit Impl(Core::System& system) : address_arbiter{system}, system{system} {} | 90 | explicit Impl(Core::System& system) : system{system} {} |
| 91 | 91 | ||
| 92 | void Initialize(KernelCore& kernel) { | 92 | void Initialize(KernelCore& kernel) { |
| 93 | Shutdown(); | 93 | Shutdown(); |
| @@ -138,8 +138,6 @@ struct KernelCore::Impl { | |||
| 138 | std::vector<SharedPtr<Process>> process_list; | 138 | std::vector<SharedPtr<Process>> process_list; |
| 139 | Process* current_process = nullptr; | 139 | Process* current_process = nullptr; |
| 140 | 140 | ||
| 141 | Kernel::AddressArbiter address_arbiter; | ||
| 142 | |||
| 143 | SharedPtr<ResourceLimit> system_resource_limit; | 141 | SharedPtr<ResourceLimit> system_resource_limit; |
| 144 | 142 | ||
| 145 | Core::Timing::EventType* thread_wakeup_event_type = nullptr; | 143 | Core::Timing::EventType* thread_wakeup_event_type = nullptr; |
| @@ -192,14 +190,6 @@ const Process* KernelCore::CurrentProcess() const { | |||
| 192 | return impl->current_process; | 190 | return impl->current_process; |
| 193 | } | 191 | } |
| 194 | 192 | ||
| 195 | AddressArbiter& KernelCore::AddressArbiter() { | ||
| 196 | return impl->address_arbiter; | ||
| 197 | } | ||
| 198 | |||
| 199 | const AddressArbiter& KernelCore::AddressArbiter() const { | ||
| 200 | return impl->address_arbiter; | ||
| 201 | } | ||
| 202 | |||
| 203 | void KernelCore::AddNamedPort(std::string name, SharedPtr<ClientPort> port) { | 193 | void KernelCore::AddNamedPort(std::string name, SharedPtr<ClientPort> port) { |
| 204 | impl->named_ports.emplace(std::move(name), std::move(port)); | 194 | impl->named_ports.emplace(std::move(name), std::move(port)); |
| 205 | } | 195 | } |