mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2025-06-28 13:52:39 +02:00
thermosphere: fix sending bug when handling ctrl-c
This commit is contained in:
parent
bf7f077432
commit
f1a241ffef
@ -540,7 +540,13 @@ GDB_DECLARE_VERBOSE_HANDLER(Continue)
|
||||
|
||||
// "Note: In non-stop mode, a thread is considered running until GDB acknowledges
|
||||
// an asynchronous stop notification for it with the ‘vStopped’ packet (see Remote Non-Stop)."
|
||||
u32 mask = GDB_IsNonStop(ctx) ? ctx->acknowledgedDebugEventCoreList : ctx->attachedCoreList;
|
||||
u32 mask;
|
||||
if (GDB_IsNonStop(ctx)) {
|
||||
mask = ctx->acknowledgedDebugEventCoreList;
|
||||
} else {
|
||||
mask = ctx->attachedCoreList;
|
||||
ctx->sendOwnDebugEventDisallowed = (continueCoreList & mask) == 0;
|
||||
}
|
||||
|
||||
debugManagerSetSingleStepCoreList(stepCoreList & mask);
|
||||
debugManagerBreakCores(stopCoreList & ~mask);
|
||||
|
Loading…
Reference in New Issue
Block a user