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] Target vector inheritance for NetBSD/mips


Obvious.

Mark

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

	* mipsnbsd-nat.c: Include "target.h" and "inf-ptrace.h".
	(mipsnbsd_fetch_inferior_registers): Rename from
	fetch_inferior_registers.  Make static.
	(mipsnbsd_store_inferior_registers): Rename from
	store_inferior_registers.  Make static.
	(_initialize_mipsnbsd_nat): New function and prototype.
	* Makefile.in (mipsnbsd-nat.o): Update dependencies.
	* config/mips/nbsd.mh (NAT_CLIBS, NAT_FILE): Remove variables.
	(NATDEPFILES): Remove infptrace.o and inftarg.o.  Add
	inf-ptrace.o.

Index: mipsnbsd-nat.c
===================================================================
RCS file: /cvs/src/src/gdb/mipsnbsd-nat.c,v
retrieving revision 1.3
diff -u -p -r1.3 mipsnbsd-nat.c
--- mipsnbsd-nat.c 30 Oct 2004 14:31:19 -0000 1.3
+++ mipsnbsd-nat.c 31 Oct 2004 20:43:05 -0000
@@ -22,14 +22,16 @@
 #include "defs.h"
 #include "inferior.h"
 #include "regcache.h"
-
-#include "mips-tdep.h"
-#include "mipsnbsd-tdep.h"
+#include "target.h"
 
 #include <sys/types.h>
 #include <sys/ptrace.h>
 #include <machine/reg.h>
 
+#include "mips-tdep.h"
+#include "mipsnbsd-tdep.h"
+#include "inf-ptrace.h"
+
 /* Determine if PT_GETREGS fetches this register.  */
 static int
 getregs_supplies (int regno)
@@ -37,8 +39,8 @@ getregs_supplies (int regno)
   return ((regno) >= MIPS_ZERO_REGNUM && (regno) <= PC_REGNUM);
 }
 
-void
-fetch_inferior_registers (int regno)
+static void
+mipsnbsd_fetch_inferior_registers (int regno)
 {
   if (regno == -1 || getregs_supplies (regno))
     {
@@ -65,8 +67,8 @@ fetch_inferior_registers (int regno)
     }
 }
 
-void
-store_inferior_registers (int regno)
+static void
+mipsnbsd_store_inferior_registers (int regno)
 {
   if (regno == -1 || getregs_supplies (regno))
     {
@@ -101,3 +103,18 @@ store_inferior_registers (int regno)
 	perror_with_name ("Couldn't write floating point status");
     }
 }
+
+
+/* Provide a prototype to silence -Wmissing-prototypes.  */
+void _initialize_mipsnbsd_nat (void);
+
+void
+_initialize_mipsnbsd_nat (void)
+{
+  struct target_ops *t;
+
+  t = inf_ptrace_target ();
+  t->to_fetch_registers = mipsnbsd_fetch_inferior_registers;
+  t->to_store_registers = mipsnbsd_store_inferior_registers;
+  add_target (t);
+}
Index: Makefile.in
===================================================================
RCS file: /cvs/src/src/gdb/Makefile.in,v
retrieving revision 1.651
diff -u -p -r1.651 Makefile.in
--- Makefile.in 31 Oct 2004 20:37:00 -0000 1.651
+++ Makefile.in 31 Oct 2004 20:43:09 -0000
@@ -2245,7 +2245,7 @@ mips-mdebug-tdep.o: mips-mdebug-tdep.c $
 	$(elf_bfd_h) $(gdb_assert_h) $(frame_unwind_h) $(frame_base_h) \
 	$(mips_mdebug_tdep_h) $(mdebugread_h)
 mipsnbsd-nat.o: mipsnbsd-nat.c $(defs_h) $(inferior_h) $(regcache_h) \
-	$(mips_tdep_h) $(mipsnbsd_tdep_h)
+	$(target_h) $(mips_tdep_h) $(mipsnbsd_tdep_h) $(inf_ptrace_h)
 mipsnbsd-tdep.o: mipsnbsd-tdep.c $(defs_h) $(gdbcore_h) $(regcache_h) \
 	$(regset_h) $(target_h) $(value_h) $(osabi_h) $(gdb_assert_h) \
 	$(gdb_string_h) $(nbsd_tdep_h) $(mipsnbsd_tdep_h) $(mips_tdep_h) \
Index: config/mips/nbsd.mh
===================================================================
RCS file: /cvs/src/src/gdb/config/mips/nbsd.mh,v
retrieving revision 1.2
diff -u -p -r1.2 nbsd.mh
--- config/mips/nbsd.mh 3 Sep 2004 19:08:20 -0000 1.2
+++ config/mips/nbsd.mh 31 Oct 2004 20:43:09 -0000
@@ -1,4 +1,2 @@
-# Host: MIPS running NetBSD
-NAT_CLIBS=
-NATDEPFILES= infptrace.o inftarg.o fork-child.o mipsnbsd-nat.o
-NAT_FILE= config/nm-nbsd.h
+# Host: NetBSD/mips
+NATDEPFILES= fork-child.o inf-ptrace.o mipsnbsd-nat.o


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