diff options
Diffstat (limited to 'gdb/remote-st.c')
-rw-r--r-- | gdb/remote-st.c | 89 |
1 files changed, 47 insertions, 42 deletions
diff --git a/gdb/remote-st.c b/gdb/remote-st.c index 117501d83a3..bba79619214 100644 --- a/gdb/remote-st.c +++ b/gdb/remote-st.c @@ -790,54 +790,59 @@ connect_command (args, fromtty) /* Define the target subroutine names */ -struct target_ops st2000_ops = { - "st2000", - "Remote serial Tandem ST2000 target", - "Use a remote computer running STDEBUG connected by a serial line,\n\ +struct target_ops st2000_ops ; + +static void init_st2000_ops(void) +{ + st2000_ops.to_shortname = "st2000"; + st2000_ops.to_longname = "Remote serial Tandem ST2000 target"; + st2000_ops.to_doc = "Use a remote computer running STDEBUG connected by a serial line;\n\ or a network connection.\n\ Arguments are the name of the device for the serial line,\n\ -the speed to connect at in bits per second.", - st2000_open, - st2000_close, - 0, - st2000_detach, - st2000_resume, - st2000_wait, - st2000_fetch_register, - st2000_store_register, - st2000_prepare_to_store, - st2000_xfer_inferior_memory, - st2000_files_info, - st2000_insert_breakpoint, - st2000_remove_breakpoint, /* Breakpoints */ - 0, - 0, - 0, - 0, - 0, /* Terminal handling */ - st2000_kill, - 0, /* load */ - 0, /* lookup_symbol */ - st2000_create_inferior, - st2000_mourn_inferior, - 0, /* can_run */ - 0, /* notice_signals */ - 0, /* to_stop */ - process_stratum, - 0, /* next */ - 1, - 1, - 1, - 1, - 1, /* all mem, mem, stack, regs, exec */ - 0, - 0, /* Section pointers */ - OPS_MAGIC, /* Always the last thing */ -}; +the speed to connect at in bits per second." ; + st2000_ops.to_open = st2000_open; + st2000_ops.to_close = st2000_close; + st2000_ops.to_attach = 0; + st2000_ops.to_detach = st2000_detach; + st2000_ops.to_resume = st2000_resume; + st2000_ops.to_wait = st2000_wait; + st2000_ops.to_fetch_registers = st2000_fetch_register; + st2000_ops.to_store_registers = st2000_store_register; + st2000_ops.to_prepare_to_store = st2000_prepare_to_store; + st2000_ops.to_xfer_memory = st2000_xfer_inferior_memory; + st2000_ops.to_files_info = st2000_files_info; + st2000_ops.to_insert_breakpoint = st2000_insert_breakpoint; + st2000_ops.to_remove_breakpoint = st2000_remove_breakpoint; /* Breakpoints */ + st2000_ops.to_terminal_init = 0; + st2000_ops.to_terminal_inferior = 0; + st2000_ops.to_terminal_ours_for_output = 0; + st2000_ops.to_terminal_ours = 0; + st2000_ops.to_terminal_info = 0; /* Terminal handling */ + st2000_ops.to_kill = st2000_kill; + st2000_ops.to_load = 0; /* load */ + st2000_ops.to_lookup_symbol = 0; /* lookup_symbol */ + st2000_ops.to_create_inferior = st2000_create_inferior; + st2000_ops.to_mourn_inferior = st2000_mourn_inferior; + st2000_ops.to_can_run = 0; /* can_run */ + st2000_ops.to_notice_signals = 0; /* notice_signals */ + st2000_ops.to_thread_alive = 0; /* thread alive */ + st2000_ops.to_stop = 0; /* to_stop */ + st2000_ops.to_stratum = process_stratum; + st2000_ops.DONT_USE = 0; /* next */ + st2000_ops.to_has_all_memory = 1; + st2000_ops.to_has_memory = 1; + st2000_ops.to_has_stack = 1; + st2000_ops.to_has_registers = 1; + st2000_ops.to_has_execution = 1; /* all mem, mem, stack, regs, exec */ + st2000_ops.to_sections = 0; + st2000_ops.to_sections_end = 0; /* Section pointers */ + st2000_ops.to_magic = OPS_MAGIC; /* Always the last thing */ +} ; void _initialize_remote_st2000 () { + init_st2000_ops() ; add_target (&st2000_ops); add_com ("st2000 <command>", class_obscure, st2000_command, "Send a command to the STDBUG monitor."); |