mirror of
https://github.com/Ed94/raddebugger.git
synced 2026-08-06 13:58:40 +00:00
dont over-ambitiously respond to exceptions/errors on kill/detach
This commit is contained in:
@@ -2368,9 +2368,7 @@ ctrl_thread__kill(DMN_CtrlCtx *ctrl_ctx, CTRL_Msg *msg)
|
|||||||
{
|
{
|
||||||
done = 1;
|
done = 1;
|
||||||
}
|
}
|
||||||
if(event->kind == DMN_EventKind_Halt ||
|
if(event->kind == DMN_EventKind_Halt)
|
||||||
event->kind == DMN_EventKind_Exception ||
|
|
||||||
event->kind == DMN_EventKind_Error)
|
|
||||||
{
|
{
|
||||||
done = 1;
|
done = 1;
|
||||||
}
|
}
|
||||||
@@ -2423,9 +2421,7 @@ ctrl_thread__detach(DMN_CtrlCtx *ctrl_ctx, CTRL_Msg *msg)
|
|||||||
{
|
{
|
||||||
done = 1;
|
done = 1;
|
||||||
}
|
}
|
||||||
if(event->kind == DMN_EventKind_Halt ||
|
if(event->kind == DMN_EventKind_Halt)
|
||||||
event->kind == DMN_EventKind_Exception ||
|
|
||||||
event->kind == DMN_EventKind_Error)
|
|
||||||
{
|
{
|
||||||
done = 1;
|
done = 1;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user