diff options
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(); |