diff options
| author | 2021-04-23 22:04:28 -0700 | |
|---|---|---|
| committer | 2021-05-05 16:40:52 -0700 | |
| commit | 2a7eff57a8048933a89c1a8f8d6dced7b5d604f2 (patch) | |
| tree | 757a2207ab4d29b39ee8d9ddfa79966283d4d24a /src/core/core.h | |
| parent | hle: kernel: Remove deprecated Object class. (diff) | |
| download | yuzu-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.h | 6 |
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 { | |||
| 28 | class GlobalSchedulerContext; | 28 | class GlobalSchedulerContext; |
| 29 | class KernelCore; | 29 | class KernelCore; |
| 30 | class PhysicalCore; | 30 | class PhysicalCore; |
| 31 | class Process; | 31 | class KProcess; |
| 32 | class KScheduler; | 32 | class 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(); |