aboutsummaryrefslogtreecommitdiff
path: root/gdb/bsd-uthread.c
diff options
context:
space:
mode:
authorTom Tromey <tromey@redhat.com>2013-08-05 16:54:27 +0000
committerTom Tromey <tromey@redhat.com>2013-08-05 16:54:27 +0000
commit12070676a9aa85a35b0f3e0f5f4a968e1d13e594 (patch)
treee4a25bca69a44163b9b23cf38dceb0ce519bc987 /gdb/bsd-uthread.c
parentd6787ef95c1257b1ed49364768608d6f91a98b23 (diff)
downloadgdb-12070676a9aa85a35b0f3e0f5f4a968e1d13e594.zip
gdb-12070676a9aa85a35b0f3e0f5f4a968e1d13e594.tar.gz
gdb-12070676a9aa85a35b0f3e0f5f4a968e1d13e594.tar.bz2
more add_target removals
This removes a few more erroneous calls to add_target. These calls end up installing the target in a user-visible way; but these targets are all auto-activated and, I think, should never be explicitly requested. I have no way to test these. * aix-thread.c (_initialize_aix_thread): Use complete_target_initialization. * bsd-uthread.c (_initialize_bsd_uthread): Use complete_target_initialization. * dec-thread.c (_initialize_dec_thread): Use complete_target_initialization. * ravenscar-thread.c (_initialize_ravenscar): Use complete_target_initialization. * sol-thread.c (_initialize_sol_thread): Use complete_target_initialization. * spu-multiarch.c (_initialize_spu_multiarch): Use complete_target_initialization.
Diffstat (limited to 'gdb/bsd-uthread.c')
-rw-r--r--gdb/bsd-uthread.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/bsd-uthread.c b/gdb/bsd-uthread.c
index 6a07985..0a2ea81 100644
--- a/gdb/bsd-uthread.c
+++ b/gdb/bsd-uthread.c
@@ -547,7 +547,7 @@ extern initialize_file_ftype _initialize_bsd_uthread;
void
_initialize_bsd_uthread (void)
{
- add_target (bsd_uthread_target ());
+ complete_target_initialization (bsd_uthread_target ());
bsd_uthread_data = gdbarch_data_register_pre_init (bsd_uthread_init);