summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/svc.cpp
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-01-17 18:19:17 +0100
committerbunnei <bunneidev@gmail.com>2018-01-17 18:19:17 +0100
commit7fa32af1c7da616eeff970b246274cc5c111abd2 (patch)
tree940ceaac4b712fcbbb163d06d080455aeb8df72d /src/core/hle/kernel/svc.cpp
parentMerge pull request #71 from N00byKing/patch-1 (diff)
downloadyuzu-7fa32af1c7da616eeff970b246274cc5c111abd2.tar
yuzu-7fa32af1c7da616eeff970b246274cc5c111abd2.tar.gz
yuzu-7fa32af1c7da616eeff970b246274cc5c111abd2.tar.bz2
yuzu-7fa32af1c7da616eeff970b246274cc5c111abd2.tar.lz
yuzu-7fa32af1c7da616eeff970b246274cc5c111abd2.tar.xz
yuzu-7fa32af1c7da616eeff970b246274cc5c111abd2.tar.zst
yuzu-7fa32af1c7da616eeff970b246274cc5c111abd2.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/kernel/svc.cpp10
1 files changed, 4 insertions, 6 deletions
diff --git a/src/core/hle/kernel/svc.cpp b/src/core/hle/kernel/svc.cpp
index 088058ebc..6401af35a 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);
@@ -547,9 +546,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;