Просмотр исходного кода

svc: Cleanup svcGetThreadPriority.

bunnei 8 лет назад
Родитель
Сommit
001091fa72
1 измененных файлов с 5 добавлено и 3 удалено
  1. 5 3
      src/core/hle/svc.cpp

+ 5 - 3
src/core/hle/svc.cpp

@@ -149,10 +149,12 @@ static ResultCode GetInfo(u64* result, u64 info_id, u64 handle, u64 info_sub_id)
 }
 }
 
 
 /// Gets the priority for the specified thread
 /// Gets the priority for the specified thread
-static ResultCode GetThreadPriority(s32* priority, Kernel::Handle handle) {
-    LOG_TRACE(Kernel_SVC, "called, handle=0x%08X", handle);
+static ResultCode GetThreadPriority(u32* priority, Handle handle) {
     const SharedPtr<Kernel::Thread> thread = Kernel::g_handle_table.Get<Kernel::Thread>(handle);
     const SharedPtr<Kernel::Thread> thread = Kernel::g_handle_table.Get<Kernel::Thread>(handle);
-    *priority = thread ? thread->GetPriority() : 0;
+    if (!thread)
+        return ERR_INVALID_HANDLE;
+
+    *priority = thread->GetPriority();
     return RESULT_SUCCESS;
     return RESULT_SUCCESS;
 }
 }