summaryrefslogtreecommitdiff
path: root/src/core/core.h
diff options
context:
space:
mode:
authorGravatar bunnei2021-04-23 22:04:28 -0700
committerGravatar bunnei2021-05-05 16:40:52 -0700
commit2a7eff57a8048933a89c1a8f8d6dced7b5d604f2 (patch)
tree757a2207ab4d29b39ee8d9ddfa79966283d4d24a /src/core/core.h
parenthle: kernel: Remove deprecated Object class. (diff)
downloadyuzu-2a7eff57a8048933a89c1a8f8d6dced7b5d604f2.tar.gz
yuzu-2a7eff57a8048933a89c1a8f8d6dced7b5d604f2.tar.xz
yuzu-2a7eff57a8048933a89c1a8f8d6dced7b5d604f2.zip
hle: kernel: Rename Process to KProcess.
Diffstat (limited to 'src/core/core.h')
-rw-r--r--src/core/core.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/core.h b/src/core/core.h
index 16e191266..8b93ba998 100644
--- a/src/core/core.h
+++ b/src/core/core.h
@@ -28,7 +28,7 @@ namespace Kernel {
28class GlobalSchedulerContext; 28class GlobalSchedulerContext;
29class KernelCore; 29class KernelCore;
30class PhysicalCore; 30class PhysicalCore;
31class Process; 31class KProcess;
32class KScheduler; 32class KScheduler;
33} // namespace Kernel 33} // namespace Kernel
34 34
@@ -263,10 +263,10 @@ public:
263 [[nodiscard]] const Core::DeviceMemory& DeviceMemory() const; 263 [[nodiscard]] const Core::DeviceMemory& DeviceMemory() const;
264 264
265 /// Provides a pointer to the current process 265 /// Provides a pointer to the current process
266 [[nodiscard]] Kernel::Process* CurrentProcess(); 266 [[nodiscard]] Kernel::KProcess* CurrentProcess();
267 267
268 /// Provides a constant pointer to the current process. 268 /// Provides a constant pointer to the current process.
269 [[nodiscard]] const Kernel::Process* CurrentProcess() const; 269 [[nodiscard]] const Kernel::KProcess* CurrentProcess() const;
270 270
271 /// Provides a reference to the core timing instance. 271 /// Provides a reference to the core timing instance.
272 [[nodiscard]] Timing::CoreTiming& CoreTiming(); 272 [[nodiscard]] Timing::CoreTiming& CoreTiming();