aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Kettenis <kettenis@gnu.org>2005-04-16 22:12:09 +0000
committerMark Kettenis <kettenis@gnu.org>2005-04-16 22:12:09 +0000
commit65d034bc606e13587f6736d6f4f17d3ce67adb21 (patch)
treeef15afce9cfe18ef0c07f11db7a51859a6b544d2
parent7b6f628627fd678e69558bdc8e4f2bd62e56ec0c (diff)
downloadgdb-65d034bc606e13587f6736d6f4f17d3ce67adb21.zip
gdb-65d034bc606e13587f6736d6f4f17d3ce67adb21.tar.gz
gdb-65d034bc606e13587f6736d6f4f17d3ce67adb21.tar.bz2
* ppcobsd-nat.c: Update copyright year. Include "inf-ptrace.h".
(ppcobsd_fetch_registers): Renamed from fetch_inferior_registers; made static. (ppcobsd_store_registers): Renamed from store_inferior_registers; made static. (_initialize_ppcobsd_nat): Construct and add target vector. * config/powerpc/obsd.mh (NATDEPFILES): Remove infptrace.o and inftarg.o. Add inf-ptrace.o. (NAT_FILE): Remove. * Makefile.in (ppcobsd-nat.o): Update dependencies.
-rw-r--r--gdb/ChangeLog11
-rw-r--r--gdb/Makefile.in2
-rw-r--r--gdb/config/powerpc/obsd.mh3
-rw-r--r--gdb/ppcobsd-nat.c19
4 files changed, 27 insertions, 8 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 605410c..3c4d420 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,5 +1,16 @@
2005-04-16 Mark Kettenis <kettenis@gnu.org>
+ * ppcobsd-nat.c: Update copyright year. Include "inf-ptrace.h".
+ (ppcobsd_fetch_registers): Renamed from fetch_inferior_registers;
+ made static.
+ (ppcobsd_store_registers): Renamed from store_inferior_registers;
+ made static.
+ (_initialize_ppcobsd_nat): Construct and add target vector.
+ * config/powerpc/obsd.mh (NATDEPFILES): Remove infptrace.o and
+ inftarg.o. Add inf-ptrace.o.
+ (NAT_FILE): Remove.
+ * Makefile.in (ppcobsd-nat.o): Update dependencies.
+
* ppcobsd-tdep.c: Include "floatformat.h".
(ppcobsd_init_abi): Set long_double_bit and long_double_format.
* Makefile.in (ppcobsd-tdep.o): Update dependencies.
diff --git a/gdb/Makefile.in b/gdb/Makefile.in
index 721431e..1a27600 100644
--- a/gdb/Makefile.in
+++ b/gdb/Makefile.in
@@ -2371,7 +2371,7 @@ ppcnbsd-tdep.o: ppcnbsd-tdep.c $(defs_h) $(gdbcore_h) $(regcache_h) \
$(ppcnbsd_tdep_h) $(nbsd_tdep_h) $(tramp_frame_h) $(trad_frame_h) \
$(gdb_assert_h) $(solib_svr4_h)
ppcobsd-nat.o: ppcobsd-nat.c $(defs_h) $(inferior_h) $(regcache_h) \
- $(ppc_tdep_h) $(ppcobsd_tdep_h)
+ $(ppc_tdep_h) $(ppcobsd_tdep_h) $(inf_ptrace_h)
ppcobsd-tdep.o: ppcobsd-tdep.c $(defs_h) $(arch_utils_h) $(floatformat_h) \
$(osabi_h) $(regcache_h) $(regset_h) $(trad_frame_h) \
$(tramp_frame_h) $(gdb_assert_h) $(gdb_string_h) $(ppc_tdep_h) \
diff --git a/gdb/config/powerpc/obsd.mh b/gdb/config/powerpc/obsd.mh
index 0482d3d..4986ef8 100644
--- a/gdb/config/powerpc/obsd.mh
+++ b/gdb/config/powerpc/obsd.mh
@@ -1,3 +1,2 @@
# Host: OpenBSD/powerpc
-NATDEPFILES= ppcobsd-nat.o fork-child.o infptrace.o inftarg.o
-NAT_FILE= config/nm-bsd.h
+NATDEPFILES= fork-child.o inf-ptrace.o ppcobsd-nat.o
diff --git a/gdb/ppcobsd-nat.c b/gdb/ppcobsd-nat.c
index eac058b..0a4aaf3 100644
--- a/gdb/ppcobsd-nat.c
+++ b/gdb/ppcobsd-nat.c
@@ -1,6 +1,6 @@
/* Native-dependent code for OpenBSD/powerpc.
- Copyright 2004 Free Software Foundation, Inc.
+ Copyright 2004, 2005 Free Software Foundation, Inc.
This file is part of GDB.
@@ -30,6 +30,7 @@
#include "ppc-tdep.h"
#include "ppcobsd-tdep.h"
+#include "inf-ptrace.h"
/* OpenBSD/powerpc doesn't have PT_GETFPREGS/PT_SETFPREGS like
NetBSD/powerpc and FreeBSD/powerpc. */
@@ -37,8 +38,8 @@
/* Fetch register REGNUM from the inferior. If REGNUM is -1, do this
for all registers. */
-void
-fetch_inferior_registers (int regnum)
+static void
+ppcobsd_fetch_registers (int regnum)
{
struct reg regs;
@@ -53,8 +54,8 @@ fetch_inferior_registers (int regnum)
/* Store register REGNUM back into the inferior. If REGNUM is -1, do
this for all registers. */
-void
-store_inferior_registers (int regnum)
+static void
+ppcobsd_store_registers (int regnum)
{
struct reg regs;
@@ -77,6 +78,14 @@ void _initialize_ppcobsd_nat (void);
void
_initialize_ppcobsd_nat (void)
{
+ struct target_ops *t;
+
+ /* Add in local overrides. */
+ t = inf_ptrace_target ();
+ t->to_fetch_registers = ppcobsd_fetch_registers;
+ t->to_store_registers = ppcobsd_store_registers;
+ add_target (t);
+
/* General-purpose registers. */
ppcobsd_reg_offsets.r0_offset = offsetof (struct reg, gpr);
ppcobsd_reg_offsets.pc_offset = offsetof (struct reg, pc);