summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/srv.cpp
diff options
context:
space:
mode:
authorbunnei <ericbunnie@gmail.com>2014-05-30 05:26:58 +0200
committerbunnei <ericbunnie@gmail.com>2014-05-30 05:26:58 +0200
commitc404d22036e16d20d91fca0cf29d56785656c0f5 (patch)
tree8dd5aa70a08441dc3139a22bf94e8fccd5414649 /src/core/hle/service/srv.cpp
parentsvc: updated OutputDebugString to use OS_LOG (diff)
downloadyuzu-c404d22036e16d20d91fca0cf29d56785656c0f5.tar
yuzu-c404d22036e16d20d91fca0cf29d56785656c0f5.tar.gz
yuzu-c404d22036e16d20d91fca0cf29d56785656c0f5.tar.bz2
yuzu-c404d22036e16d20d91fca0cf29d56785656c0f5.tar.lz
yuzu-c404d22036e16d20d91fca0cf29d56785656c0f5.tar.xz
yuzu-c404d22036e16d20d91fca0cf29d56785656c0f5.tar.zst
yuzu-c404d22036e16d20d91fca0cf29d56785656c0f5.zip
Diffstat (limited to 'src/core/hle/service/srv.cpp')
-rw-r--r--src/core/hle/service/srv.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/hle/service/srv.cpp b/src/core/hle/service/srv.cpp
index 97e7fc8fa..ac8f398fc 100644
--- a/src/core/hle/service/srv.cpp
+++ b/src/core/hle/service/srv.cpp
@@ -15,14 +15,14 @@ namespace SRV {
Handle g_mutex = 0;
void Initialize(Service::Interface* self) {
- DEBUG_LOG(OSHLE, "SRV::Initialize called");
+ DEBUG_LOG(OSHLE, "called");
if (!g_mutex) {
g_mutex = Kernel::CreateMutex(false);
}
}
void GetProcSemaphore(Service::Interface* self) {
- DEBUG_LOG(OSHLE, "SRV::GetProcSemaphore called");
+ DEBUG_LOG(OSHLE, "called");
// Get process semaphore?
u32* cmd_buff = Service::GetCommandBuffer();
cmd_buff[1] = 0; // No error
@@ -36,7 +36,7 @@ void GetServiceHandle(Service::Interface* self) {
std::string port_name = std::string((const char*)&cmd_buff[1], 0, Service::kMaxPortSize);
Service::Interface* service = Service::g_manager->FetchFromPortName(port_name);
- DEBUG_LOG(OSHLE, "SRV::Sync - GetHandle - port: %s, handle: 0x%08X", port_name.c_str(),
+ DEBUG_LOG(OSHLE, "called port=%s, handle=0x%08X", port_name.c_str(),
service->GetHandle());
if (NULL != service) {