From 87696041442fdcb735f405f05ca4e3722b4f7128 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Sun, 30 Dec 2018 21:09:00 -0500 Subject: kernel/process: Rename GetAllowedProcessorMask() and GetAllowedThreadPriorityMask() Makes them consistent with their kernel capability counterparts. --- src/core/hle/kernel/process.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/core/hle/kernel/process.h') 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(); } -- cgit v1.2.3