mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-16 11:48:36 +12:00
Syscall analysis implemented
This commit is contained in:
parent
63e690ca11
commit
9db7de29fb
16 changed files with 234 additions and 155 deletions
|
@ -271,6 +271,7 @@ s32 sys_timer_sleep(u32 sleep_time)
|
|||
std::this_thread::sleep_for(std::chrono::microseconds(useconds - passed));
|
||||
}
|
||||
|
||||
CHECK_EMU_STATUS;
|
||||
return CELL_OK;
|
||||
}
|
||||
|
||||
|
@ -294,5 +295,6 @@ s32 sys_timer_usleep(const u64 sleep_time)
|
|||
std::this_thread::sleep_for(std::chrono::microseconds(sleep_time - passed));
|
||||
}
|
||||
|
||||
CHECK_EMU_STATUS;
|
||||
return CELL_OK;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue