diff options
| author | liamwhite <liamwhite@users.noreply.github.com> | 2023-08-18 09:12:19 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-08-18 09:12:19 -0400 |
| commit | 314d3858a1cb6db72ef66ca41dd2cd9061cdbec4 (patch) | |
| tree | 0de70ba0585b5e3dc68cff10dfd330ce29bbab8e /src/core/hle/kernel/k_resource_limit.h | |
| parent | 0383ae1dbf815ed9b3a77bc31abca94ee72eb640 (diff) | |
| parent | 0bd9a4456c49b1e5de8f659682a814bb4b5854d2 (diff) | |
Merge pull request #11288 from liamwhite/svc-tick
kernel: remove relative task registration
Diffstat (limited to 'src/core/hle/kernel/k_resource_limit.h')
| -rw-r--r-- | src/core/hle/kernel/k_resource_limit.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/core/hle/kernel/k_resource_limit.h b/src/core/hle/kernel/k_resource_limit.h index 15e69af56..b733ec8f8 100644 --- a/src/core/hle/kernel/k_resource_limit.h +++ b/src/core/hle/kernel/k_resource_limit.h @@ -31,7 +31,7 @@ public: explicit KResourceLimit(KernelCore& kernel); ~KResourceLimit() override; - void Initialize(const Core::Timing::CoreTiming* core_timing); + void Initialize(); void Finalize() override; s64 GetLimitValue(LimitableResource which) const; @@ -57,7 +57,6 @@ private: mutable KLightLock m_lock; s32 m_waiter_count{}; KLightConditionVariable m_cond_var; - const Core::Timing::CoreTiming* m_core_timing{}; }; KResourceLimit* CreateResourceLimitForProcess(Core::System& system, s64 physical_memory_size); |
