* 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.
This commit is contained in:
parent
7b6f628627
commit
65d034bc60
4 changed files with 27 additions and 8 deletions
|
@ -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.
|
||||
|
|
|
@ -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) \
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue