mirror of
				https://github.com/PabloMK7/citra.git
				synced 2025-10-31 22:00:05 +00:00 
			
		
		
		
	cleanups to service HLE
This commit is contained in:
		
							parent
							
								
									68e198476f
								
							
						
					
					
						commit
						b24e6f2b60
					
				
					 2 changed files with 8 additions and 8 deletions
				
			
		|  | @ -75,7 +75,7 @@ public: | |||
|      * Gets the string name used by CTROS for a service | ||||
|      * @return String name of service | ||||
|      */ | ||||
|     std::string GetName() { | ||||
|     std::string GetName() const { | ||||
|         return "ServiceManager"; | ||||
|     } | ||||
| 
 | ||||
|  | @ -83,7 +83,7 @@ public: | |||
|      * Gets the string name used by CTROS for a service | ||||
|      * @return Port name of service | ||||
|      */ | ||||
|     std::string GetPortName() { | ||||
|     std::string GetPortName() const { | ||||
|         return "srv:"; | ||||
|     } | ||||
| 
 | ||||
|  | @ -92,8 +92,8 @@ public: | |||
|      * @return Return result of svcSendSyncRequest passed back to user app | ||||
|      */ | ||||
|     Syscall::Result Sync() { | ||||
|         ERROR_LOG(HLE, "Unimplemented function ServiceManager::Sync"); | ||||
|         return -1; | ||||
|         ERROR_LOG(HLE, "Unimplemented function Interface_SRV::Sync"); | ||||
|         return 0; | ||||
|     } | ||||
| 
 | ||||
| }; | ||||
|  | @ -102,13 +102,13 @@ public: | |||
| void Init() { | ||||
|     g_manager = new Manager; | ||||
|     g_manager->AddService(new Interface_SRV); | ||||
|     NOTICE_LOG(HLE, "ServiceManager initialized OK"); | ||||
|     NOTICE_LOG(HLE, "Services initialized OK"); | ||||
| } | ||||
| 
 | ||||
| /// Shutdown ServiceManager
 | ||||
| void Shutdown() { | ||||
|     delete g_manager; | ||||
|     NOTICE_LOG(HLE, "ServiceManager shutdown OK"); | ||||
|     NOTICE_LOG(HLE, "Services shutdown OK"); | ||||
| } | ||||
| 
 | ||||
| 
 | ||||
|  |  | |||
|  | @ -40,7 +40,7 @@ public: | |||
|      * Gets the string name used by CTROS for a service | ||||
|      * @return String name of service | ||||
|      */ | ||||
|     virtual std::string GetName() { | ||||
|     virtual std::string GetName() const { | ||||
|         return "[UNKNOWN SERVICE NAME]"; | ||||
|     } | ||||
| 
 | ||||
|  | @ -48,7 +48,7 @@ public: | |||
|      * Gets the string name used by CTROS for a service | ||||
|      * @return Port name of service | ||||
|      */ | ||||
|     virtual std::string GetPortName() { | ||||
|     virtual std::string GetPortName() const { | ||||
|         return "[UNKNOWN SERVICE PORT]"; | ||||
|     } | ||||
| 
 | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue