From 68f50c7035c62aef16a8b334d16f4a0f1f0b0107 Mon Sep 17 00:00:00 2001 From: Nekotekina Date: Tue, 3 Mar 2020 15:21:58 +0300 Subject: [PATCH] Fix ppu_syscall_usage thread waiting Fixed 10s hang on exit --- rpcs3/Emu/Cell/lv2/lv2.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rpcs3/Emu/Cell/lv2/lv2.cpp b/rpcs3/Emu/Cell/lv2/lv2.cpp index 7b2ea967b0..83962f1d40 100644 --- a/rpcs3/Emu/Cell/lv2/lv2.cpp +++ b/rpcs3/Emu/Cell/lv2/lv2.cpp @@ -1021,7 +1021,7 @@ public: { while (thread_ctrl::state() != thread_state::aborting) { - std::this_thread::sleep_for(10s); + thread_ctrl::wait_for(10000'000); print_stats(); } }