ntdll: On x86_64 systems (as on i386 ones), hw breakpoints must generate a EXCEPTION_SINGLE_STEP exception.
This commit is contained in:
parent
196f8f070d
commit
2bebb68a0b
|
@ -2096,6 +2096,7 @@ static void trap_handler( int signal, siginfo_t *siginfo, void *sigcontext )
|
|||
switch (siginfo->si_code)
|
||||
{
|
||||
case TRAP_TRACE: /* Single-step exception */
|
||||
case 4 /* TRAP_HWBKPT */: /* Hardware breakpoint exception */
|
||||
rec->ExceptionCode = EXCEPTION_SINGLE_STEP;
|
||||
break;
|
||||
case TRAP_BRKPT: /* Breakpoint exception */
|
||||
|
|
Loading…
Reference in New Issue