mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-06-05 18:23:16 +00:00
clang-fix
This commit is contained in:
parent
188eebb92a
commit
b0b74243af
2 changed files with 10 additions and 8 deletions
|
@ -327,7 +327,8 @@ void PS4_SYSV_ABI sched_yield() {
|
|||
std::this_thread::yield();
|
||||
}
|
||||
|
||||
int PS4_SYSV_ABI posix_pthread_once(PthreadOnce* once_control, void PS4_SYSV_ABI (*init_routine)()) {
|
||||
int PS4_SYSV_ABI posix_pthread_once(PthreadOnce* once_control,
|
||||
void PS4_SYSV_ABI (*init_routine)()) {
|
||||
for (;;) {
|
||||
auto state = once_control->state.load();
|
||||
if (state == PthreadOnceState::Done) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue