X-Git-Url: http://git.ipfire.org/?a=blobdiff_plain;f=gdbserver%2Flynx-low.cc;h=9aa140c12988d73075099e3b56015b3128a67a4a;hb=3ba07c177d504ded569198b530ff448602e017cb;hp=5e23713cfaf7015831da4dc5b75736db5959e6fd;hpb=8247b8236bc5528993d9b2938bc0544a5acea21d;p=thirdparty%2Fbinutils-gdb.git diff --git a/gdbserver/lynx-low.cc b/gdbserver/lynx-low.cc index 5e23713cfaf..9aa140c1298 100644 --- a/gdbserver/lynx-low.cc +++ b/gdbserver/lynx-low.cc @@ -728,31 +728,20 @@ lynx_process_target::supports_hardware_single_step () return true; } +const gdb_byte * +lynx_process_target::sw_breakpoint_from_kind (int kind, int *size) +{ + error (_("Target does not implement the sw_breakpoint_from_kind op")); +} + /* The LynxOS target ops object. */ static lynx_process_target the_lynx_target; -/* The LynxOS target_ops vector. */ - -static process_stratum_target lynx_target_ops = { - NULL, /* multifs_open */ - NULL, /* multifs_unlink */ - NULL, /* multifs_readlink */ - NULL, /* breakpoint_kind_from_pc */ - NULL, /* sw_breakpoint_from_kind */ - NULL, /* thread_name */ - NULL, /* breakpoint_kind_from_current_state */ - NULL, /* supports_software_single_step */ - NULL, /* supports_catch_syscall */ - NULL, /* get_ipa_tdesc_idx */ - NULL, /* thread_handle */ - &the_lynx_target, -}; - void initialize_low (void) { - set_target_ops (&lynx_target_ops); + set_target_ops (&the_lynx_target); the_low_target.arch_setup (); }