]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commit - gdb/ChangeLog
Conditionally restore displaced stepping state after fork.
authorJohn Baldwin <jhb@FreeBSD.org>
Tue, 1 Jun 2021 21:22:20 +0000 (14:22 -0700)
committerJohn Baldwin <jhb@FreeBSD.org>
Tue, 1 Jun 2021 21:22:20 +0000 (14:22 -0700)
commitaeeb758df5a61a323de0095c28b3de1ee7b00db3
treed94fb1f1b24af5434a2a3e98a2860e217a2633ae
parent906f72d454d159f0a116d0a1039616361d2160cb
Conditionally restore displaced stepping state after fork.

There is no default method for
gdbarch_displaced_step_restore_all_in_ptid, so calling it
unconditionally for fork events triggered an assertion failure on
platforms that do not support displaced stepping.  To fix, only invoke
the method if the gdbarch supports displaced stepping.

Note that not all gdbarches support both displaced stepping and fork
events, so gdbarch validation does not require
gdbarch_displaced_step_restore_all_in_ptid for any gdbarch supporting
displaced stepping.  However, the internal assertion in
gdbarch_displaced_step_restore_all_in_ptid should catch any gdbarches
which do support both but fail to provide this method.

gdb/ChangeLog:

* infrun.c (handle_inferior_event): Only call
gdbarch_displaced_step_restore_all_in_ptid if
gdbarch_supports_displaced_stepping is true.
gdb/ChangeLog
gdb/infrun.c