diff options
author | Руслан Ижбулатов <lrn1986@gmail.com> | 2016-07-23 11:38:03 +0300 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2016-07-23 11:38:03 +0300 |
commit | 463888ab6be549e8dcc9eac36dc07c1c237e2968 (patch) | |
tree | 41ef8df68696e267f5f6d35a600e935d31767f2c /gdb/NEWS | |
parent | cac709756b00c57a375f40e032d2eb4f5dbd3804 (diff) | |
download | fsf-binutils-gdb-463888ab6be549e8dcc9eac36dc07c1c237e2968.zip fsf-binutils-gdb-463888ab6be549e8dcc9eac36dc07c1c237e2968.tar.gz fsf-binutils-gdb-463888ab6be549e8dcc9eac36dc07c1c237e2968.tar.bz2 |
Support JIT debugging on MS-Windows
gdb/ChangeLog:
2016-06-30 Руслан Ижбулатов <lrn1986@gmail.com>
PR gdb/14529
* windows-nat.c (signal_event_command): New command 'signal-event'
for W32 JIT debug support.
* NEWS: Add an entry about the new 'signal-event' command.
gdb/doc/ChangeLog:
2016-06-30 Руслан Ижбулатов <lrn1986@gmail.com>
* gdb.texinfo (Cygwin Native): Document the new 'signal-event'
command.
Diffstat (limited to 'gdb/NEWS')
-rw-r--r-- | gdb/NEWS | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -85,6 +85,13 @@ new-ui INTERP TTY ** gdb.Breakpoint objects have a new attribute "pending", which indicates whether the breakpoint is pending. +signal-event EVENTID + Signal ("set") the given MS-Windows event object. This is used in + conjunction with the Windows JIT debugging (AeDebug) support, where + the OS suspends a crashing process until a debugger can attach to + it. Resuming the crashing process, in order to debug it, is done by + signalling an event. + * Support for tracepoints and fast tracepoints on s390-linux and s390x-linux was added in GDBserver, including JIT compiling fast tracepoint's conditional expression bytecode into native code. |