diff options
Diffstat (limited to 'gdb/win32-nat.c')
-rw-r--r-- | gdb/win32-nat.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/gdb/win32-nat.c b/gdb/win32-nat.c index f689576..fe1c01c 100644 --- a/gdb/win32-nat.c +++ b/gdb/win32-nat.c @@ -867,6 +867,12 @@ handle_exception (struct target_waitstatus *ourstatus) ourstatus->value.sig = TARGET_SIGNAL_INT; last_sig = SIGINT; /* FIXME - should check pass state */ break; + case DBG_CONTROL_BREAK: + DEBUG_EXCEPT (("gdb: Target exception CONTROL_BREAK at 0x%08lx\n", + (DWORD) current_event.u.Exception.ExceptionRecord.ExceptionAddress)); + ourstatus->value.sig = TARGET_SIGNAL_INT; + last_sig = SIGINT; /* FIXME - should check pass state */ + break; case EXCEPTION_SINGLE_STEP: DEBUG_EXCEPT (("gdb: Target exception SINGLE_STEP at 0x%08lx\n", (DWORD) current_event.u.Exception.ExceptionRecord.ExceptionAddress)); |