diff options
Diffstat (limited to 'gdb/remote-eb.c')
-rw-r--r-- | gdb/remote-eb.c | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/gdb/remote-eb.c b/gdb/remote-eb.c index 458750eacc8..09c3911370b 100644 --- a/gdb/remote-eb.c +++ b/gdb/remote-eb.c @@ -987,9 +987,13 @@ target amd-eb /dev/ttya 9600 demo", eb_ops.to_open = eb_open; eb_ops.to_close = eb_close; eb_ops.to_attach = 0; + eb_ops.to_post_attach = NULL; + eb_ops.to_require_attach = NULL; eb_ops.to_detach = eb_detach; + eb_ops.to_require_detach = NULL; eb_ops.to_resume = eb_resume; eb_ops.to_wait = eb_wait; + eb_ops.to_post_wait = NULL; eb_ops.to_fetch_registers = eb_fetch_register; eb_ops.to_store_registers = eb_store_register; eb_ops.to_prepare_to_store = eb_prepare_to_store; @@ -1006,11 +1010,30 @@ target amd-eb /dev/ttya 9600 demo", eb_ops.to_load = generic_load; /* load */ eb_ops.to_lookup_symbol = 0; /* lookup_symbol */ eb_ops.to_create_inferior = eb_create_inferior; + eb_ops.to_post_startup_inferior = NULL; + eb_ops.to_acknowledge_created_inferior = NULL; + eb_ops.to_clone_and_follow_inferior = NULL; + eb_ops.to_post_follow_inferior_by_clone = NULL; + eb_ops.to_insert_fork_catchpoint = NULL; + eb_ops.to_remove_fork_catchpoint = NULL; + eb_ops.to_insert_vfork_catchpoint = NULL; + eb_ops.to_remove_vfork_catchpoint = NULL; + eb_ops.to_has_forked = NULL; + eb_ops.to_has_vforked = NULL; + eb_ops.to_can_follow_vfork_prior_to_exec = NULL; + eb_ops.to_post_follow_vfork = NULL; + eb_ops.to_insert_exec_catchpoint = NULL; + eb_ops.to_remove_exec_catchpoint = NULL; + eb_ops.to_has_execd = NULL; + eb_ops.to_reported_exec_events_per_exec_call = NULL; + eb_ops.to_has_exited = NULL; eb_ops.to_mourn_inferior = eb_mourn_inferior; eb_ops.to_can_run = 0; /* can_run */ eb_ops.to_notice_signals = 0; /* notice_signals */ eb_ops.to_thread_alive = 0; /* thread-alive */ eb_ops.to_stop = 0; /* to_stop */ + eb_ops.to_pid_to_exec_file = NULL; + eb_ops.to_core_file_to_sym_file = NULL; eb_ops.to_stratum = process_stratum; eb_ops.DONT_USE = 0; /* next */ eb_ops.to_has_all_memory = 1; |