1
0
mirror of https://github.com/RPCS3/rpcs3.git synced 2024-11-25 04:02:42 +01:00

Fix ppu_syscall_usage thread waiting

Fixed 10s hang on exit
This commit is contained in:
Nekotekina 2020-03-03 15:21:58 +03:00
parent 5c3d417b35
commit 68f50c7035

View File

@ -1021,7 +1021,7 @@ public:
{ {
while (thread_ctrl::state() != thread_state::aborting) while (thread_ctrl::state() != thread_state::aborting)
{ {
std::this_thread::sleep_for(10s); thread_ctrl::wait_for(10000'000);
print_stats(); print_stats();
} }
} }