Merge pull request #2613 from Mattiwatti/exitprocess-event
Clear history before exit breakpoint
This commit is contained in:
commit
83114f1b34
|
@ -1500,17 +1500,17 @@ static void cbExitProcess(EXIT_PROCESS_DEBUG_INFO* ExitProcess)
|
|||
PLUG_CB_EXITPROCESS callbackInfo;
|
||||
callbackInfo.ExitProcess = ExitProcess;
|
||||
plugincbcall(CB_EXITPROCESS, &callbackInfo);
|
||||
_dbg_animatestop(); // Stop animating
|
||||
//history
|
||||
dbgcleartracestate();
|
||||
dbgClearRtuBreakpoints();
|
||||
HistoryClear();
|
||||
if(breakHere)
|
||||
{
|
||||
dbgsetforeground();
|
||||
dbgsetskipexceptions(false);
|
||||
wait(WAITID_RUN);
|
||||
}
|
||||
_dbg_animatestop(); // Stop animating
|
||||
//history
|
||||
dbgcleartracestate();
|
||||
dbgClearRtuBreakpoints();
|
||||
HistoryClear();
|
||||
}
|
||||
|
||||
static void cbCreateThread(CREATE_THREAD_DEBUG_INFO* CreateThread)
|
||||
|
|
Loading…
Reference in New Issue