mirror of https://github.com/mgba-emu/mgba.git
GBA: Make sure interrupting the thread actually pauses it
This commit is contained in:
parent
22e7eff33c
commit
64ba9d2d8e
|
@ -180,6 +180,7 @@ static THREAD_ENTRY _GBAThreadRun(void* context) {
|
||||||
|
|
||||||
int resetScheduled = 0;
|
int resetScheduled = 0;
|
||||||
MutexLock(&threadContext->stateMutex);
|
MutexLock(&threadContext->stateMutex);
|
||||||
|
while (threadContext->state > THREAD_RUNNING && threadContext->state < THREAD_EXITING) {
|
||||||
if (threadContext->state == THREAD_PAUSING) {
|
if (threadContext->state == THREAD_PAUSING) {
|
||||||
threadContext->state = THREAD_PAUSED;
|
threadContext->state = THREAD_PAUSED;
|
||||||
ConditionWake(&threadContext->stateCond);
|
ConditionWake(&threadContext->stateCond);
|
||||||
|
@ -192,9 +193,10 @@ static THREAD_ENTRY _GBAThreadRun(void* context) {
|
||||||
threadContext->state = THREAD_RUNNING;
|
threadContext->state = THREAD_RUNNING;
|
||||||
resetScheduled = 1;
|
resetScheduled = 1;
|
||||||
}
|
}
|
||||||
while (threadContext->state == THREAD_PAUSED) {
|
while (threadContext->state == THREAD_PAUSED || threadContext->state == THREAD_INTERRUPTED) {
|
||||||
ConditionWait(&threadContext->stateCond, &threadContext->stateMutex);
|
ConditionWait(&threadContext->stateCond, &threadContext->stateMutex);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
MutexUnlock(&threadContext->stateMutex);
|
MutexUnlock(&threadContext->stateMutex);
|
||||||
if (resetScheduled) {
|
if (resetScheduled) {
|
||||||
ARMReset(&cpu);
|
ARMReset(&cpu);
|
||||||
|
|
Loading…
Reference in New Issue