summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/kernel.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2021-02-03 23:53:25 +0100
committerGitHub <noreply@github.com>2021-02-03 23:53:25 +0100
commitb0c97526633dffdf105f6d0a854ee2d02ae5a516 (patch)
tree9da902b04fb9424a3f1e32ee05b81327da521157 /src/core/hle/kernel/kernel.h
parentMerge pull request #5842 from german77/userfix (diff)
parentSimplify limitableresource names (diff)
downloadyuzu-b0c97526633dffdf105f6d0a854ee2d02ae5a516.tar
yuzu-b0c97526633dffdf105f6d0a854ee2d02ae5a516.tar.gz
yuzu-b0c97526633dffdf105f6d0a854ee2d02ae5a516.tar.bz2
yuzu-b0c97526633dffdf105f6d0a854ee2d02ae5a516.tar.lz
yuzu-b0c97526633dffdf105f6d0a854ee2d02ae5a516.tar.xz
yuzu-b0c97526633dffdf105f6d0a854ee2d02ae5a516.tar.zst
yuzu-b0c97526633dffdf105f6d0a854ee2d02ae5a516.zip
Diffstat (limited to 'src/core/hle/kernel/kernel.h')
-rw-r--r--src/core/hle/kernel/kernel.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/kernel/kernel.h b/src/core/hle/kernel/kernel.h
index e7c77727b..806a0d986 100644
--- a/src/core/hle/kernel/kernel.h
+++ b/src/core/hle/kernel/kernel.h
@@ -38,7 +38,7 @@ class GlobalSchedulerContext;
class HandleTable;
class PhysicalCore;
class Process;
-class ResourceLimit;
+class KResourceLimit;
class KScheduler;
class SharedMemory;
class ServiceThread;
@@ -85,7 +85,7 @@ public:
void Shutdown();
/// Retrieves a shared pointer to the system resource limit instance.
- std::shared_ptr<ResourceLimit> GetSystemResourceLimit() const;
+ std::shared_ptr<KResourceLimit> GetSystemResourceLimit() const;
/// Retrieves a shared pointer to a Thread instance within the thread wakeup handle table.
std::shared_ptr<KThread> RetrieveThreadFromGlobalHandleTable(Handle handle) const;