diff options
Diffstat (limited to 'gdb/aix-thread.c')
-rw-r--r-- | gdb/aix-thread.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/gdb/aix-thread.c b/gdb/aix-thread.c index 18ee0b1f0f5..1c2063ea527 100644 --- a/gdb/aix-thread.c +++ b/gdb/aix-thread.c @@ -129,7 +129,8 @@ static int pd_active = 0; static int arch64; -/* Saved pointer to previous owner of target_new_objfile_hook. */ +/* Saved pointer to previous owner of + deprecated_target_new_objfile_hook. */ static void (*target_new_objfile_chain)(struct objfile *); @@ -893,7 +894,7 @@ pd_disable (void) unpush_target (&aix_thread_ops); } -/* target_new_objfile_hook callback. +/* deprecated_target_new_objfile_hook callback. If OBJFILE is non-null, check whether a threaded application is being debugged, and if so, prepare for thread debugging. @@ -1695,8 +1696,8 @@ _initialize_aix_thread (void) add_target (&aix_thread_ops); /* Notice when object files get loaded and unloaded. */ - target_new_objfile_chain = target_new_objfile_hook; - target_new_objfile_hook = new_objfile; + target_new_objfile_chain = deprecated_target_new_objfile_hook; + deprecated_target_new_objfile_hook = new_objfile; add_show_from_set (add_set_cmd ("aix-thread", no_class, var_zinteger, (char *) &debug_aix_thread, |