mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-07 15:31:26 +12:00
Linux: use futex_waitv syscall for atomic waiting
In order to make this possible, some unnecessary features were removed.
This commit is contained in:
parent
831a9fe012
commit
d34287b2cc
51 changed files with 441 additions and 574 deletions
|
@ -1366,7 +1366,7 @@ void debugger_frame::DoStep(bool step_over)
|
|||
}
|
||||
});
|
||||
|
||||
cpu->state.notify_one(s_pause_flags);
|
||||
cpu->state.notify_one();
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -1412,7 +1412,7 @@ void debugger_frame::RunBtnPress()
|
|||
Emu.Resume();
|
||||
}
|
||||
|
||||
cpu->state.notify_one(s_pause_flags);
|
||||
cpu->state.notify_one();
|
||||
m_debugger_list->EnableThreadFollowing();
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue