From: Mark Kettenis Date: Thu, 12 May 2005 21:36:08 +0000 (+0000) Subject: * sol-thread.c: Include "solib.h". X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=62078d2c0f68db1229925b8deb95d1b53311b9aa;p=pf3gnuchains%2Fpf3gnuchains3x.git * sol-thread.c: Include "solib.h". (sol_thread_attach): Use solib_add instead of SOLIB_ADD. * Makefile.in (sol-thread.o): Update dependencies. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 9f6960ad29..34306ce6fa 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,9 @@ 2005-05-12 Mark Kettenis + * sol-thread.c: Include "solib.h". + (sol_thread_attach): Use solib_add instead of SOLIB_ADD. + * Makefile.in (sol-thread.o): Update dependencies. + * NEWS: Mention OpenBSD/mips64 as a new native configuration. 2005-05-12 Eli Zaretskii diff --git a/gdb/Makefile.in b/gdb/Makefile.in index 4241ffd214..728ec8c00f 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -2551,7 +2551,7 @@ solib-svr4.o: solib-svr4.c $(defs_h) $(elf_external_h) $(elf_common_h) \ $(solist_h) $(solib_svr4_h) $(bfd_target_h) $(exec_h) sol-thread.o: sol-thread.c $(defs_h) $(gdbthread_h) $(target_h) \ $(inferior_h) $(gdb_stat_h) $(gdbcmd_h) $(gdbcore_h) $(regcache_h) \ - $(symfile_h) $(gdb_string_h) $(gregset_h) + $(solib_h) $(symfile_h) $(gdb_string_h) $(gregset_h) somread.o: somread.c $(defs_h) $(bfd_h) $(symtab_h) $(symfile_h) \ $(objfiles_h) $(buildsym_h) $(stabsread_h) $(gdb_stabs_h) \ $(complaints_h) $(gdb_string_h) $(demangle_h) $(som_h) $(libhppa_h) \ diff --git a/gdb/sol-thread.c b/gdb/sol-thread.c index 8b208765e4..87357f41c4 100644 --- a/gdb/sol-thread.c +++ b/gdb/sol-thread.c @@ -1,7 +1,7 @@ /* Solaris threads debugging interface. - Copyright 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004 - Free Software Foundation, Inc. + Copyright 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, + 2005 Free Software Foundation, Inc. This file is part of GDB. @@ -64,6 +64,7 @@ #include "gdbcmd.h" #include "gdbcore.h" #include "regcache.h" +#include "solib.h" #include "symfile.h" #include "gdb_string.h" @@ -353,7 +354,7 @@ sol_thread_attach (char *args, int from_tty) procfs_ops.to_attach (args, from_tty); /* Must get symbols from shared libraries before libthread_db can run! */ - SOLIB_ADD ((char *) 0, from_tty, (struct target_ops *) 0, auto_solib_add); + solib_add (NULL, from_tty, (struct target_ops *) 0, auto_solib_add); if (sol_thread_active) {