X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=gdb%2Fremote-st.c;h=1efdbfac0276eaf641fdd2a0e43e9f05fe37bc7b;hb=af754d91f9600568b95d55e397f03315dfc8bb38;hp=3fd8cf176384638d976612f4eb10007fa73c46f0;hpb=afcad54a90445ba65ca91b13341b75facc96521c;p=deliverable%2Fbinutils-gdb.git diff --git a/gdb/remote-st.c b/gdb/remote-st.c index 3fd8cf1763..1efdbfac02 100644 --- a/gdb/remote-st.c +++ b/gdb/remote-st.c @@ -424,7 +424,7 @@ get_reg_name (regno) b = buf; - for (p = reg_names[regno]; *p; p++) + for (p = REGISTER_NAME (regno); *p; p++) *b++ = toupper(*p); *b = '\000'; @@ -795,7 +795,8 @@ connect_command (args, fromtty) struct target_ops st2000_ops ; -static void init_st2000_ops(void) +static void +init_st2000_ops(void) { st2000_ops.to_shortname = "st2000"; st2000_ops.to_longname = "Remote serial Tandem ST2000 target"; @@ -806,9 +807,13 @@ 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_run_ops.to_post_attach = NULL; + st2000_ops.to_require_attach = NULL; st2000_ops.to_detach = st2000_detach; + st2000_ops.to_require_detach = NULL; st2000_ops.to_resume = st2000_resume; st2000_ops.to_wait = st2000_wait; + st2000_ops.to_post_wait = NULL; 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; @@ -825,11 +830,30 @@ the speed to connect at in bits per second." ; 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_post_startup_inferior = NULL; + st2000_ops.to_acknowledge_created_inferior = NULL; + st2000_ops.to_clone_and_follow_inferior = NULL; + st2000_ops.to_post_follow_inferior_by_clone = NULL; + st2000_run_ops.to_insert_fork_catchpoint = NULL; + st2000_run_ops.to_remove_fork_catchpoint = NULL; + st2000_run_ops.to_insert_vfork_catchpoint = NULL; + st2000_run_ops.to_remove_vfork_catchpoint = NULL; + st2000_ops.to_has_forked = NULL; + st2000_ops.to_has_vforked = NULL; + st2000_run_ops.to_can_follow_vfork_prior_to_exec = NULL; + st2000_ops.to_post_follow_vfork = NULL; + st2000_run_ops.to_insert_exec_catchpoint = NULL; + st2000_run_ops.to_remove_exec_catchpoint = NULL; + st2000_run_ops.to_has_execd = NULL; + st2000_run_ops.to_reported_exec_events_per_exec_call = NULL; + st2000_run_ops.to_has_exited = NULL; 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_pid_to_exec_file = NULL; + st2000_run_ops.to_core_file_to_sym_file = NULL; st2000_ops.to_stratum = process_stratum; st2000_ops.DONT_USE = 0; /* next */ st2000_ops.to_has_all_memory = 1;