summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/process.h
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-12-04 06:29:15 +0100
committerLioncash <mathew1800@gmail.com>2018-12-04 07:50:30 +0100
commit312690b4509a6e5c5e97b667136aea7693e52ca0 (patch)
tree81c05c9ff48b02023c713d5ed57fc6799e27b274 /src/core/hle/kernel/process.h
parentMerge pull request #1852 from VPeruS/fix-format-string (diff)
downloadyuzu-312690b4509a6e5c5e97b667136aea7693e52ca0.tar
yuzu-312690b4509a6e5c5e97b667136aea7693e52ca0.tar.gz
yuzu-312690b4509a6e5c5e97b667136aea7693e52ca0.tar.bz2
yuzu-312690b4509a6e5c5e97b667136aea7693e52ca0.tar.lz
yuzu-312690b4509a6e5c5e97b667136aea7693e52ca0.tar.xz
yuzu-312690b4509a6e5c5e97b667136aea7693e52ca0.tar.zst
yuzu-312690b4509a6e5c5e97b667136aea7693e52ca0.zip
Diffstat (limited to 'src/core/hle/kernel/process.h')
-rw-r--r--src/core/hle/kernel/process.h9
1 files changed, 1 insertions, 8 deletions
diff --git a/src/core/hle/kernel/process.h b/src/core/hle/kernel/process.h
index ada845c7f..49345aa66 100644
--- a/src/core/hle/kernel/process.h
+++ b/src/core/hle/kernel/process.h
@@ -171,14 +171,7 @@ public:
}
/// Gets the resource limit descriptor for this process
- ResourceLimit& GetResourceLimit() {
- return *resource_limit;
- }
-
- /// Gets the resource limit descriptor for this process
- const ResourceLimit& GetResourceLimit() const {
- return *resource_limit;
- }
+ SharedPtr<ResourceLimit> GetResourceLimit() const;
/// Gets the default CPU ID for this process
u8 GetDefaultProcessorID() const {