aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/hle/service/service.cpp
diff options
context:
space:
mode:
authorGravatar bunnei <ericbunnie@gmail.com>2014-04-12 22:08:48 -0400
committerGravatar bunnei <ericbunnie@gmail.com>2014-04-12 22:08:48 -0400
commitb24e6f2b609e1a75f05124a6246801dd0e56183a (patch)
treea9cbfb096c6138355b3033bdfb4fa7c102a33140 /src/core/hle/service/service.cpp
parent68e198476f17a026fed88f3c9a271aa768694354 (diff)
cleanups to service HLE
Diffstat (limited to 'src/core/hle/service/service.cpp')
-rw-r--r--src/core/hle/service/service.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/core/hle/service/service.cpp b/src/core/hle/service/service.cpp
index 4bc96cc1..3434b6db 100644
--- a/src/core/hle/service/service.cpp
+++ b/src/core/hle/service/service.cpp
@@ -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");
}