aboutsummaryrefslogtreecommitdiff
path: root/gdb/ChangeLog
diff options
context:
space:
mode:
authorTom Tromey <tromey@adacore.com>2020-04-08 14:33:35 -0600
committerTom Tromey <tromey@adacore.com>2020-04-08 14:47:59 -0600
commite758e19c596f8d0683f6c8ca750eb4e79071523d (patch)
treea353862ef878e18d32918f5c5ed803836ada23cd /gdb/ChangeLog
parent8d30e395779603a8d36fa8bdfddba88a312552f4 (diff)
downloadgdb-e758e19c596f8d0683f6c8ca750eb4e79071523d.zip
gdb-e758e19c596f8d0683f6c8ca750eb4e79071523d.tar.gz
gdb-e758e19c596f8d0683f6c8ca750eb4e79071523d.tar.bz2
Share some inferior-related Windows code
This adds a couple of functions to nat/windows-nat.c and changes gdb and gdbserver to use them. One function checks the list of pending stops for a match (not yet used by gdbserver, but will be in a subsequent patch); and the other is a wrapper for ContinueDebugEvent that always uses the last "real" stop event. gdb/ChangeLog 2020-04-08 Tom Tromey <tromey@adacore.com> * windows-nat.c (windows_continue): Use matching_pending_stop and continue_last_debug_event. * nat/windows-nat.h (matching_pending_stop) (continue_last_debug_event): Declare. * nat/windows-nat.c (DEBUG_EVENTS): New define. (matching_pending_stop, continue_last_debug_event): New functions. gdbserver/ChangeLog 2020-04-08 Tom Tromey <tromey@adacore.com> * win32-low.c (child_continue): Call continue_last_debug_event.
Diffstat (limited to 'gdb/ChangeLog')
-rw-r--r--gdb/ChangeLog10
1 files changed, 10 insertions, 0 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 663e2af..3929faf 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,5 +1,15 @@
2020-04-08 Tom Tromey <tromey@adacore.com>
+ * windows-nat.c (windows_continue): Use matching_pending_stop and
+ continue_last_debug_event.
+ * nat/windows-nat.h (matching_pending_stop)
+ (continue_last_debug_event): Declare.
+ * nat/windows-nat.c (DEBUG_EVENTS): New define.
+ (matching_pending_stop, continue_last_debug_event): New
+ functions.
+
+2020-04-08 Tom Tromey <tromey@adacore.com>
+
* windows-nat.c (MS_VC_EXCEPTION): Move to nat/windows-nat.c.
(handle_exception_result): Move to nat/windows-nat.h.
(DEBUG_EXCEPTION_SIMPLE): Remove.