aboutsummaryrefslogtreecommitdiff
path: root/gdb/mac-nat.c
diff options
context:
space:
mode:
authorDavid Taylor <taylor@redhat.com>1998-12-28 23:06:13 +0000
committerDavid Taylor <taylor@redhat.com>1998-12-28 23:06:13 +0000
commit4ef1f4677390c085543fe80eec41b0fe5d58ddca (patch)
treed0e8320e4871a81733155e8ce653507dd3d64825 /gdb/mac-nat.c
parentd6fdf61c78fbce1dad62cd1022e606fdaaad4202 (diff)
downloadgdb-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/mac-nat.c')
-rw-r--r--gdb/mac-nat.c23
1 files changed, 23 insertions, 0 deletions
diff --git a/gdb/mac-nat.c b/gdb/mac-nat.c
index 178b215..15e3f69 100644
--- a/gdb/mac-nat.c
+++ b/gdb/mac-nat.c
@@ -341,9 +341,13 @@ static void init_child_ops(void)
child_ops.to_open = child_open;
child_ops.to_close = child_close;
child_ops.to_attach = child_attach;
+ child_ops.to_post_attach = NULL;
+ child_ops.to_require_attach = NULL; /* to_require_attach */
child_ops.to_detach = child_detach;
+ child_ops.to_require_detach = NULL; /* to_require_detach */
child_ops.to_resume = child_resume;
child_ops.to_wait = child_wait;
+ child_ops.to_post_wait = NULL; /* to_post_wait */
child_ops.to_fetch_registers = child_fetch_inferior_registers;
child_ops.to_store_registers = child_store_inferior_registers;
child_ops.to_prepare_to_store = child_prepare_to_store;
@@ -360,11 +364,30 @@ static void init_child_ops(void)
child_ops.to_load = 0;
child_ops.to_lookup_symbol = 0;
child_ops.to_create_inferior = child_create_inferior;
+ child_ops.to_post_startup_inferior = NULL; /* to_post_startup_inferior */
+ child_ops.to_acknowledge_created_inferior = NULL; /* to_acknowledge_created_inferior */
+ child_ops.to_clone_and_follow_inferior = NULL; /* to_clone_and_follow_inferior */
+ child_ops.to_post_follow_inferior_by_clone = NULL; /* to_post_follow_inferior_by_clone */
+ child_ops.to_insert_fork_catchpoint = NULL;
+ child_ops.to_remove_fork_catchpoint = NULL;
+ child_ops.to_insert_vfork_catchpoint = NULL;
+ child_ops.to_remove_vfork_catchpoint = NULL;
+ child_ops.to_has_forked = NULL; /* to_has_forked */
+ child_ops.to_has_vforked = NULL; /* to_has_vforked */
+ child_ops.to_can_follow_vfork_prior_to_exec = NULL;
+ child_ops.to_post_follow_vfork = NULL; /* to_post_follow_vfork */
+ child_ops.to_insert_exec_catchpoint = NULL;
+ child_ops.to_remove_exec_catchpoint = NULL;
+ child_ops.to_has_execd = NULL;
+ child_ops.to_reported_exec_events_per_exec_call = NULL;
+ child_ops.to_has_exited = NULL;
child_ops.to_mourn_inferior = child_mourn_inferior;
child_ops.to_can_run = child_can_run;
child_ops.to_notice_signals = 0;
child_ops.to_thread_alive = 0;
child_ops.to_stop = child_stop;
+ child_ops.to_pid_to_exec_file = NULL; /* to_pid_to_exec_file */
+ child_ops.to_core_file_to_sym_file = NULL;
child_ops.to_stratum = process_stratum;
child_ops.DONT_USE = 0;
child_ops.to_has_all_memory = 1;