diff options
Diffstat (limited to 'gdb/remote-os9k.c')
-rw-r--r-- | gdb/remote-os9k.c | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/gdb/remote-os9k.c b/gdb/remote-os9k.c index acdc847..ca2f747 100644 --- a/gdb/remote-os9k.c +++ b/gdb/remote-os9k.c @@ -1155,9 +1155,13 @@ Specify the serial device it is connected to (e.g. /dev/ttya).", rombug_ops.to_open = rombug_open; rombug_ops.to_close = rombug_close; rombug_ops.to_attach = 0; + rombug_ops.to_post_attach = NULL; + rombug_ops.to_require_attach = NULL; rombug_ops.to_detach = rombug_detach; + rombug_ops.to_require_detach = NULL; rombug_ops.to_resume = rombug_resume; rombug_ops.to_wait = rombug_wait; + rombug_ops.to_post_wait = NULL; rombug_ops.to_fetch_registers = rombug_fetch_register; rombug_ops.to_store_registers = rombug_store_register; rombug_ops.to_prepare_to_store = rombug_prepare_to_store; @@ -1174,11 +1178,30 @@ Specify the serial device it is connected to (e.g. /dev/ttya).", rombug_ops.to_load = rombug_load; /* load */ rombug_ops.to_lookup_symbol = rombug_link; /* lookup_symbol */ rombug_ops.to_create_inferior = rombug_create_inferior; + rombug_ops.to_post_startup_inferior = NULL; + rombug_ops.to_acknowledge_created_inferior = NULL; + rombug_ops.to_clone_and_follow_inferior = NULL; + rombug_ops.to_post_follow_inferior_by_clone = NULL; + rombug_ops.to_insert_fork_catchpoint = NULL; + rombug_ops.to_remove_fork_catchpoint = NULL; + rombug_ops.to_insert_vfork_catchpoint = NULL; + rombug_ops.to_remove_vfork_catchpoint = NULL; + rombug_ops.to_has_forked = NULL; + rombug_ops.to_has_vforked = NULL; + rombug_ops.to_can_follow_vfork_prior_to_exec = NULL; + rombug_ops.to_post_follow_vfork = NULL; + rombug_ops.to_insert_exec_catchpoint = NULL; + rombug_ops.to_remove_exec_catchpoint = NULL; + rombug_ops.to_has_execd = NULL; + rombug_ops.to_reported_exec_events_per_exec_call = NULL; + rombug_ops.to_has_exited = NULL; rombug_ops.to_mourn_inferior = rombug_mourn_inferior; rombug_ops.to_can_run = 0; /* can_run */ rombug_ops.to_notice_signals = 0; /* notice_signals */ rombug_ops.to_thread_alive = 0; rombug_ops.to_stop = 0; /* to_stop */ + rombug_ops.to_pid_to_exec_file = NULL; + rombug_ops.to_core_file_to_sym_file = NULL; rombug_ops.to_stratum = process_stratum; rombug_ops.DONT_USE = 0; /* next */ rombug_ops.to_has_all_memory = 1; |