summaryrefslogtreecommitdiff
path: root/src/core/hle/kernel/svc.cpp
diff options
context:
space:
mode:
authorGravatar Liam2022-06-13 18:36:30 -0400
committerGravatar Liam2022-06-14 10:04:11 -0400
commit888f499188cb869dc8f8f1597c46add65c005324 (patch)
tree2abcaaf69fcb2c15352c99add7a97c9eea567486 /src/core/hle/kernel/svc.cpp
parentMerge pull request #8461 from Morph1984/msvc-narrow-conv (diff)
downloadyuzu-888f499188cb869dc8f8f1597c46add65c005324.tar.gz
yuzu-888f499188cb869dc8f8f1597c46add65c005324.tar.xz
yuzu-888f499188cb869dc8f8f1597c46add65c005324.zip
kernel: implement KProcess suspension
Diffstat (limited to 'src/core/hle/kernel/svc.cpp')
-rw-r--r--src/core/hle/kernel/svc.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/kernel/svc.cpp b/src/core/hle/kernel/svc.cpp
index 584fa5b1c..a1c09dd78 100644
--- a/src/core/hle/kernel/svc.cpp
+++ b/src/core/hle/kernel/svc.cpp
@@ -2530,7 +2530,7 @@ static ResultCode GetThreadList(Core::System& system, u32* out_num_threads, VAdd
2530 return ResultOutOfRange; 2530 return ResultOutOfRange;
2531 } 2531 }
2532 2532
2533 const auto* const current_process = system.Kernel().CurrentProcess(); 2533 auto* const current_process = system.Kernel().CurrentProcess();
2534 const auto total_copy_size = out_thread_ids_size * sizeof(u64); 2534 const auto total_copy_size = out_thread_ids_size * sizeof(u64);
2535 2535
2536 if (out_thread_ids_size > 0 && 2536 if (out_thread_ids_size > 0 &&