summaryrefslogtreecommitdiff
path: root/src/core/hle/kernel/svc.cpp
diff options
context:
space:
mode:
authorGravatar James Rowe2018-01-20 00:48:02 -0700
committerGravatar James Rowe2018-01-20 16:45:11 -0700
commit096be1663682f38d572e9816e3350e0dc9f13168 (patch)
treea2f695170d9a3e0e98cebf823087cdb65d5af00f /src/core/hle/kernel/svc.cpp
parentCMake: Conditionally turn on bundled libs for MSVC (diff)
downloadyuzu-096be1663682f38d572e9816e3350e0dc9f13168.tar.gz
yuzu-096be1663682f38d572e9816e3350e0dc9f13168.tar.xz
yuzu-096be1663682f38d572e9816e3350e0dc9f13168.zip
Format: Run the new clang format on everything
Diffstat (limited to 'src/core/hle/kernel/svc.cpp')
-rw-r--r--src/core/hle/kernel/svc.cpp10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/core/hle/kernel/svc.cpp b/src/core/hle/kernel/svc.cpp
index d267b6c2e..516309036 100644
--- a/src/core/hle/kernel/svc.cpp
+++ b/src/core/hle/kernel/svc.cpp
@@ -255,8 +255,9 @@ static ResultCode CancelSynchronization(Handle thread_handle) {
255/// Attempts to locks a mutex, creating it if it does not already exist 255/// Attempts to locks a mutex, creating it if it does not already exist
256static ResultCode ArbitrateLock(Handle holding_thread_handle, VAddr mutex_addr, 256static ResultCode ArbitrateLock(Handle holding_thread_handle, VAddr mutex_addr,
257 Handle requesting_thread_handle) { 257 Handle requesting_thread_handle) {
258 LOG_TRACE(Kernel_SVC, "called holding_thread_handle=0x%08X, mutex_addr=0x%llx, " 258 LOG_TRACE(Kernel_SVC,
259 "requesting_current_thread_handle=0x%08X", 259 "called holding_thread_handle=0x%08X, mutex_addr=0x%llx, "
260 "requesting_current_thread_handle=0x%08X",
260 holding_thread_handle, mutex_addr, requesting_thread_handle); 261 holding_thread_handle, mutex_addr, requesting_thread_handle);
261 262
262 SharedPtr<Thread> holding_thread = g_handle_table.Get<Thread>(holding_thread_handle); 263 SharedPtr<Thread> holding_thread = g_handle_table.Get<Thread>(holding_thread_handle);
@@ -546,8 +547,9 @@ static ResultCode CreateThread(Handle* out_handle, VAddr entry_point, u64 arg, V
546 547
547 Core::System::GetInstance().PrepareReschedule(); 548 Core::System::GetInstance().PrepareReschedule();
548 549
549 LOG_TRACE(Kernel_SVC, "called entrypoint=0x%08X (%s), arg=0x%08X, stacktop=0x%08X, " 550 LOG_TRACE(Kernel_SVC,
550 "threadpriority=0x%08X, processorid=0x%08X : created handle=0x%08X", 551 "called entrypoint=0x%08X (%s), arg=0x%08X, stacktop=0x%08X, "
552 "threadpriority=0x%08X, processorid=0x%08X : created handle=0x%08X",
551 entry_point, name.c_str(), arg, stack_top, priority, processor_id, *out_handle); 553 entry_point, name.c_str(), arg, stack_top, priority, processor_id, *out_handle);
552 554
553 return RESULT_SUCCESS; 555 return RESULT_SUCCESS;