core: system: Rename GetDeviceManager -> DeviceManager.

- More consistent with other system components.
This commit is contained in:
bunnei 2020-04-08 19:18:10 -04:00
parent 3fcc4cab4f
commit 11c02a50e9
3 changed files with 7 additions and 7 deletions

View file

@ -258,10 +258,10 @@ public:
const Kernel::GlobalScheduler& GlobalScheduler() const;
/// Gets the manager for the guest device memory
DeviceMemory& GetDeviceMemory();
Core::DeviceMemory& DeviceMemory();
/// Gets the manager for the guest device memory
const DeviceMemory& GetDeviceMemory() const;
const Core::DeviceMemory& DeviceMemory() const;
/// Provides a pointer to the current process
Kernel::Process* CurrentProcess();