diff options
author | bunnei <bunneidev@gmail.com> | 2018-01-16 23:23:33 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-16 23:23:33 +0100 |
commit | 52fe15278b812a2518dd874f29c0829b221fd70f (patch) | |
tree | 6bf8782b9338d94938e4060c8a3c88855d68ee75 /src/core/hle/kernel/svc.cpp | |
parent | Merge pull request #48 from spycrab/cmake_python (diff) | |
parent | clang-format (diff) | |
download | yuzu-52fe15278b812a2518dd874f29c0829b221fd70f.tar yuzu-52fe15278b812a2518dd874f29c0829b221fd70f.tar.gz yuzu-52fe15278b812a2518dd874f29c0829b221fd70f.tar.bz2 yuzu-52fe15278b812a2518dd874f29c0829b221fd70f.tar.lz yuzu-52fe15278b812a2518dd874f29c0829b221fd70f.tar.xz yuzu-52fe15278b812a2518dd874f29c0829b221fd70f.tar.zst yuzu-52fe15278b812a2518dd874f29c0829b221fd70f.zip |
Diffstat (limited to 'src/core/hle/kernel/svc.cpp')
-rw-r--r-- | src/core/hle/kernel/svc.cpp | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/src/core/hle/kernel/svc.cpp b/src/core/hle/kernel/svc.cpp index 9c60576c1..6b3fd13c9 100644 --- a/src/core/hle/kernel/svc.cpp +++ b/src/core/hle/kernel/svc.cpp @@ -255,9 +255,8 @@ static ResultCode CancelSynchronization(Handle thread_handle) { /// Attempts to locks a mutex, creating it if it does not already exist static ResultCode LockMutex(Handle holding_thread_handle, VAddr mutex_addr, Handle requesting_thread_handle) { - LOG_TRACE(Kernel_SVC, - "called holding_thread_handle=0x%08X, mutex_addr=0x%llx, " - "requesting_current_thread_handle=0x%08X", + LOG_TRACE(Kernel_SVC, "called holding_thread_handle=0x%08X, mutex_addr=0x%llx, " + "requesting_current_thread_handle=0x%08X", holding_thread_handle, mutex_addr, requesting_thread_handle); SharedPtr<Thread> holding_thread = g_handle_table.Get<Thread>(holding_thread_handle); @@ -522,9 +521,8 @@ static ResultCode CreateThread(Handle* out_handle, VAddr entry_point, u64 arg, V Core::System::GetInstance().PrepareReschedule(); - LOG_TRACE(Kernel_SVC, - "called entrypoint=0x%08X (%s), arg=0x%08X, stacktop=0x%08X, " - "threadpriority=0x%08X, processorid=0x%08X : created handle=0x%08X", + LOG_TRACE(Kernel_SVC, "called entrypoint=0x%08X (%s), arg=0x%08X, stacktop=0x%08X, " + "threadpriority=0x%08X, processorid=0x%08X : created handle=0x%08X", entry_point, name.c_str(), arg, stack_top, priority, processor_id, *out_handle); return RESULT_SUCCESS; |