diff options
| author | 2014-05-29 23:26:58 -0400 | |
|---|---|---|
| committer | 2014-05-29 23:26:58 -0400 | |
| commit | c404d22036e16d20d91fca0cf29d56785656c0f5 (patch) | |
| tree | 8dd5aa70a08441dc3139a22bf94e8fccd5414649 /src/core/hle/service/srv.cpp | |
| parent | svc: updated OutputDebugString to use OS_LOG (diff) | |
| download | yuzu-c404d22036e16d20d91fca0cf29d56785656c0f5.tar.gz yuzu-c404d22036e16d20d91fca0cf29d56785656c0f5.tar.xz yuzu-c404d22036e16d20d91fca0cf29d56785656c0f5.zip | |
hle: cleaned up log messages
Diffstat (limited to 'src/core/hle/service/srv.cpp')
| -rw-r--r-- | src/core/hle/service/srv.cpp | 6 |
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 { | |||
| 15 | Handle g_mutex = 0; | 15 | Handle g_mutex = 0; |
| 16 | 16 | ||
| 17 | void Initialize(Service::Interface* self) { | 17 | void Initialize(Service::Interface* self) { |
| 18 | DEBUG_LOG(OSHLE, "SRV::Initialize called"); | 18 | DEBUG_LOG(OSHLE, "called"); |
| 19 | if (!g_mutex) { | 19 | if (!g_mutex) { |
| 20 | g_mutex = Kernel::CreateMutex(false); | 20 | g_mutex = Kernel::CreateMutex(false); |
| 21 | } | 21 | } |
| 22 | } | 22 | } |
| 23 | 23 | ||
| 24 | void GetProcSemaphore(Service::Interface* self) { | 24 | void GetProcSemaphore(Service::Interface* self) { |
| 25 | DEBUG_LOG(OSHLE, "SRV::GetProcSemaphore called"); | 25 | DEBUG_LOG(OSHLE, "called"); |
| 26 | // Get process semaphore? | 26 | // Get process semaphore? |
| 27 | u32* cmd_buff = Service::GetCommandBuffer(); | 27 | u32* cmd_buff = Service::GetCommandBuffer(); |
| 28 | cmd_buff[1] = 0; // No error | 28 | cmd_buff[1] = 0; // No error |
| @@ -36,7 +36,7 @@ void GetServiceHandle(Service::Interface* self) { | |||
| 36 | std::string port_name = std::string((const char*)&cmd_buff[1], 0, Service::kMaxPortSize); | 36 | std::string port_name = std::string((const char*)&cmd_buff[1], 0, Service::kMaxPortSize); |
| 37 | Service::Interface* service = Service::g_manager->FetchFromPortName(port_name); | 37 | Service::Interface* service = Service::g_manager->FetchFromPortName(port_name); |
| 38 | 38 | ||
| 39 | DEBUG_LOG(OSHLE, "SRV::Sync - GetHandle - port: %s, handle: 0x%08X", port_name.c_str(), | 39 | DEBUG_LOG(OSHLE, "called port=%s, handle=0x%08X", port_name.c_str(), |
| 40 | service->GetHandle()); | 40 | service->GetHandle()); |
| 41 | 41 | ||
| 42 | if (NULL != service) { | 42 | if (NULL != service) { |