gdb: add target_ops::supports_displaced_step
[deliverable/binutils-gdb.git] / gdbserver / lynx-low.cc
index ad669c8e9d7ffe6a682fc7ee02979c0a34b69dbd..a8e4e6079bd0717d46cd390d450d35888002654b 100644 (file)
@@ -253,7 +253,7 @@ lynx_process_target::create_inferior (const char *program,
                                      const std::vector<char *> &program_args)
 {
   int pid;
-  std::string str_program_args = stringify_argv (program_args);
+  std::string str_program_args = construct_inferior_arguments (program_args);
 
   lynx_debug ("create_inferior ()");
 
@@ -728,28 +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,  /* 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 ();
 }
 
This page took 0.025187 seconds and 4 git commands to generate.