aboutsummaryrefslogtreecommitdiff
path: root/gdb/gdbserver/lynx-low.c
diff options
context:
space:
mode:
authorPedro Alves <palves@redhat.com>2015-03-05 10:24:58 +0000
committerPedro Alves <palves@redhat.com>2015-03-05 10:24:58 +0000
commitf5771b1d96f844e0767a15b258b2de2d4cc52123 (patch)
treefbad69f8f36feb362922d72b5cfdfb04fc5d7a65 /gdb/gdbserver/lynx-low.c
parent7e848b1a6030a0eab1bb830ab02f9f4eef090961 (diff)
downloadgdb-f5771b1d96f844e0767a15b258b2de2d4cc52123.zip
gdb-f5771b1d96f844e0767a15b258b2de2d4cc52123.tar.gz
gdb-f5771b1d96f844e0767a15b258b2de2d4cc52123.tar.bz2
Fix Windows/SPU/NTO/Lynx gdbserver builds
I forgot to update these target_ops instances when I added these new hooks. I confirmed mingw32-w64 builds again at least. gdb/gdbserver/ChangeLog: 2015-03-05 Pedro Alves <palves@redhat.com> * lynx-low.c (lynx_target_ops): Install NULL hooks for stopped_by_sw_breakpoint, supports_stopped_by_sw_breakpoint, stopped_by_hw_breakpoint, supports_stopped_by_hw_breakpoint. * nto-low.c (nto_target_ops): Likewise. * spu-low.c (spu_target_ops): Likewise. * win32-low.c (win32_target_ops): Likewise.
Diffstat (limited to 'gdb/gdbserver/lynx-low.c')
-rw-r--r--gdb/gdbserver/lynx-low.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/gdb/gdbserver/lynx-low.c b/gdb/gdbserver/lynx-low.c
index 460346c..2f85829 100644
--- a/gdb/gdbserver/lynx-low.c
+++ b/gdb/gdbserver/lynx-low.c
@@ -742,6 +742,10 @@ static struct target_ops lynx_target_ops = {
NULL, /* supports_z_point_type */
NULL, /* insert_point */
NULL, /* remove_point */
+ NULL, /* stopped_by_sw_breakpoint */
+ NULL, /* supports_stopped_by_sw_breakpoint */
+ NULL, /* stopped_by_hw_breakpoint */
+ NULL, /* supports_stopped_by_hw_breakpoint */
NULL, /* stopped_by_watchpoint */
NULL, /* stopped_data_address */
NULL, /* read_offsets */