diff options
author | David Taylor <taylor@redhat.com> | 1998-12-28 23:06:13 +0000 |
---|---|---|
committer | David Taylor <taylor@redhat.com> | 1998-12-28 23:06:13 +0000 |
commit | 4ef1f4677390c085543fe80eec41b0fe5d58ddca (patch) | |
tree | d0e8320e4871a81733155e8ce653507dd3d64825 /gdb/remote-os9k.c | |
parent | d6fdf61c78fbce1dad62cd1022e606fdaaad4202 (diff) | |
download | gdb-4ef1f4677390c085543fe80eec41b0fe5d58ddca.zip gdb-4ef1f4677390c085543fe80eec41b0fe5d58ddca.tar.gz gdb-4ef1f4677390c085543fe80eec41b0fe5d58ddca.tar.bz2 |
hp merge changes -- too numerous to mention here; see ChangeLog and
ChangeLog-gdbtk for details.
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; |