This is the mail archive of the gdb-patches@sources.redhat.com mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[COMMIT] Let bsd-uthread.c include "solib.h".


Currently this relies on tm.h making that include.  Including it
explicitly shouldn't hurt and makes things easier for me in the
future when tm.h has been eliminated.

Mark


Index: ChangeLog
from  Mark Kettenis  <kettenis@gnu.org>

	* bsd-uthread.c: Include "solib.h".
	* Makefile.in (bsd-uthread.o): Update dependencies.

Index: bsd-uthread.c
===================================================================
RCS file: /cvs/src/src/gdb/bsd-uthread.c,v
retrieving revision 1.2
diff -u -p -r1.2 bsd-uthread.c
--- bsd-uthread.c 11 Feb 2005 04:05:45 -0000 1.2
+++ bsd-uthread.c 2 May 2005 12:02:59 -0000
@@ -26,6 +26,7 @@
 #include "objfiles.h"
 #include "observer.h"
 #include "regcache.h"
+#include "solib.h"
 #include "solist.h"
 #include "symfile.h"
 #include "target.h"
Index: Makefile.in
===================================================================
RCS file: /cvs/src/src/gdb/Makefile.in,v
retrieving revision 1.725
diff -u -p -r1.725 Makefile.in
--- Makefile.in 1 May 2005 16:04:23 -0000 1.725
+++ Makefile.in 2 May 2005 12:03:01 -0000
@@ -1778,9 +1778,9 @@ bsd-kvm.o: bsd-kvm.c $(defs_h) $(cli_cmd
 	$(regcache_h) $(target_h) $(value_h) $(gdbcore_h) $(gdb_assert_h) \
 	$(readline_h) $(bsd_kvm_h)
 bsd-uthread.o: bsd-uthread.c $(defs_h) $(gdbcore_h) $(gdbthread_h) \
-	$(inferior_h) $(objfiles_h) $(observer_h) $(regcache_h) $(solist_h) \
-	$(symfile_h) $(target_h) $(gdb_assert_h) $(gdb_obstack_h) \
-	$(bsd_uthread_h)
+	$(inferior_h) $(objfiles_h) $(observer_h) $(regcache_h) $(solib_h) \
+	$(solist_h) $(symfile_h) $(target_h) $(gdb_assert_h) \
+	$(gdb_obstack_h) $(bsd_uthread_h)
 buildsym.o: buildsym.c $(defs_h) $(bfd_h) $(gdb_obstack_h) $(symtab_h) \
 	$(symfile_h) $(objfiles_h) $(gdbtypes_h) $(gdb_assert_h) \
 	$(complaints_h) $(gdb_string_h) $(expression_h) $(bcache_h) \


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]