summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/process.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-12-31 17:10:05 +0100
committerGitHub <noreply@github.com>2018-12-31 17:10:05 +0100
commit09ffa0cb21fa5421934bfa3f69ba9226a345e193 (patch)
treeabe7a8e46dedee288fd91e6de02496169d381a2a /src/core/hle/kernel/process.h
parentMerge pull request #1965 from lioncash/fmt (diff)
parentkernel/svc: Correct misleading error message within CreateThread() (diff)
downloadyuzu-09ffa0cb21fa5421934bfa3f69ba9226a345e193.tar
yuzu-09ffa0cb21fa5421934bfa3f69ba9226a345e193.tar.gz
yuzu-09ffa0cb21fa5421934bfa3f69ba9226a345e193.tar.bz2
yuzu-09ffa0cb21fa5421934bfa3f69ba9226a345e193.tar.lz
yuzu-09ffa0cb21fa5421934bfa3f69ba9226a345e193.tar.xz
yuzu-09ffa0cb21fa5421934bfa3f69ba9226a345e193.tar.zst
yuzu-09ffa0cb21fa5421934bfa3f69ba9226a345e193.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/kernel/process.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/hle/kernel/process.h b/src/core/hle/kernel/process.h
index 450dc6eeb..b710104ab 100644
--- a/src/core/hle/kernel/process.h
+++ b/src/core/hle/kernel/process.h
@@ -173,13 +173,13 @@ public:
return ideal_core;
}
- /// Gets the bitmask of allowed CPUs that this process' threads can run on.
- u64 GetAllowedProcessorMask() const {
+ /// Gets the bitmask of allowed cores that this process' threads can run on.
+ u64 GetCoreMask() const {
return capabilities.GetCoreMask();
}
/// Gets the bitmask of allowed thread priorities.
- u64 GetAllowedThreadPriorityMask() const {
+ u64 GetPriorityMask() const {
return capabilities.GetPriorityMask();
}