summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/process.h
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-12-31 03:09:00 +0100
committerLioncash <mathew1800@gmail.com>2018-12-31 03:09:46 +0100
commit87696041442fdcb735f405f05ca4e3722b4f7128 (patch)
treec56c54c4677de9d07be0a0e727f4a4d8d2ad5b26 /src/core/hle/kernel/process.h
parentkernel/svc: Simplify thread core ID sanitizing in CreateThread (diff)
downloadyuzu-87696041442fdcb735f405f05ca4e3722b4f7128.tar
yuzu-87696041442fdcb735f405f05ca4e3722b4f7128.tar.gz
yuzu-87696041442fdcb735f405f05ca4e3722b4f7128.tar.bz2
yuzu-87696041442fdcb735f405f05ca4e3722b4f7128.tar.lz
yuzu-87696041442fdcb735f405f05ca4e3722b4f7128.tar.xz
yuzu-87696041442fdcb735f405f05ca4e3722b4f7128.tar.zst
yuzu-87696041442fdcb735f405f05ca4e3722b4f7128.zip
Diffstat (limited to 'src/core/hle/kernel/process.h')
-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();
}