mirror of
				https://git.suyu.dev/suyu/suyu
				synced 2025-10-29 15:09:02 -05:00 
			
		
		
		
	core: memory: Move to Core::Memory namespace.
- helpful to disambiguate Kernel::Memory namespace.
This commit is contained in:
		| @@ -210,7 +210,7 @@ private: | ||||
|  | ||||
|     /// This is the event handle used to check if the audio buffer was released | ||||
|     Kernel::EventPair buffer_event; | ||||
|     Memory::Memory& main_memory; | ||||
|     Core::Memory::Memory& main_memory; | ||||
| }; | ||||
|  | ||||
| AudOutU::AudOutU(Core::System& system_) : ServiceFramework("audout:u"), system{system_} { | ||||
|   | ||||
| @@ -17,7 +17,7 @@ namespace Service::LM { | ||||
|  | ||||
| class ILogger final : public ServiceFramework<ILogger> { | ||||
| public: | ||||
|     explicit ILogger(Manager& manager_, Memory::Memory& memory_) | ||||
|     explicit ILogger(Manager& manager_, Core::Memory::Memory& memory_) | ||||
|         : ServiceFramework("ILogger"), manager{manager_}, memory{memory_} { | ||||
|         static const FunctionInfo functions[] = { | ||||
|             {0, &ILogger::Log, "Log"}, | ||||
| @@ -75,12 +75,12 @@ private: | ||||
|     } | ||||
|  | ||||
|     Manager& manager; | ||||
|     Memory::Memory& memory; | ||||
|     Core::Memory::Memory& memory; | ||||
| }; | ||||
|  | ||||
| class LM final : public ServiceFramework<LM> { | ||||
| public: | ||||
|     explicit LM(Manager& manager_, Memory::Memory& memory_) | ||||
|     explicit LM(Manager& manager_, Core::Memory::Memory& memory_) | ||||
|         : ServiceFramework{"lm"}, manager{manager_}, memory{memory_} { | ||||
|         // clang-format off | ||||
|         static const FunctionInfo functions[] = { | ||||
| @@ -101,7 +101,7 @@ private: | ||||
|     } | ||||
|  | ||||
|     Manager& manager; | ||||
|     Memory::Memory& memory; | ||||
|     Core::Memory::Memory& memory; | ||||
| }; | ||||
|  | ||||
| void InstallInterfaces(Core::System& system) { | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 bunnei
					bunnei