diff options
author | Michael Snyder <msnyder@vmware.com> | 2000-09-05 17:43:00 +0000 |
---|---|---|
committer | Michael Snyder <msnyder@vmware.com> | 2000-09-05 17:43:00 +0000 |
commit | 71150974e8b0233964a0a12f71b5fe61c8b010b0 (patch) | |
tree | 91b7aa70744f6994fc57e81743f12625cb0f85b2 /gdb/sol-thread.c | |
parent | 23715f2973fc808ca7defa4d7b60704d7b24a61e (diff) | |
download | gdb-71150974e8b0233964a0a12f71b5fe61c8b010b0.zip gdb-71150974e8b0233964a0a12f71b5fe61c8b010b0.tar.gz gdb-71150974e8b0233964a0a12f71b5fe61c8b010b0.tar.bz2 |
Fix mistaken check-in.
Diffstat (limited to 'gdb/sol-thread.c')
-rw-r--r-- | gdb/sol-thread.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/gdb/sol-thread.c b/gdb/sol-thread.c index 156c152..aa909ad 100644 --- a/gdb/sol-thread.c +++ b/gdb/sol-thread.c @@ -453,11 +453,9 @@ sol_thread_attach (char *args, int from_tty) { procfs_ops.to_attach (args, from_tty); - if (auto_solib_add) - { - /* Must get symbols from solibs before libthread_db can run! */ - SOLIB_ADD ((char *) 0, from_tty, (struct target_ops *) 0); - } + /* Must get symbols from solibs before libthread_db can run! */ + SOLIB_ADD ((char *) 0, from_tty, (struct target_ops *) 0); + if (sol_thread_active) { printf_filtered ("sol-thread active.\n"); |