interface_x64: Remove is_executing assert from HaltExecution
In multithreaded code this can be triggered due to a race.
This commit is contained in:
parent
f6cf265bc5
commit
148c01e08f
1 changed files with 0 additions and 3 deletions
|
@ -185,10 +185,7 @@ void Jit::Reset() {
|
||||||
}
|
}
|
||||||
|
|
||||||
void Jit::HaltExecution() {
|
void Jit::HaltExecution() {
|
||||||
ASSERT(is_executing);
|
|
||||||
impl->jit_state.halt_requested = true;
|
impl->jit_state.halt_requested = true;
|
||||||
|
|
||||||
// TODO: Uh do other stuff to JitState pls.
|
|
||||||
}
|
}
|
||||||
|
|
||||||
std::array<u32, 16>& Jit::Regs() {
|
std::array<u32, 16>& Jit::Regs() {
|
||||||
|
|
Loading…
Reference in a new issue