* emulparams/armelf.sh: Define NO_SMALL_DATA.
[deliverable/binutils-gdb.git] / gdb / shnbsd-nat.c
index 0367fde1a8f6e0d01a4dcc679aa01db1e115cd3d..ec40069855399aad6eae45a7cd683b226326676d 100644 (file)
@@ -1,5 +1,5 @@
 /* Native-dependent code for SuperH running NetBSD, for GDB.
-   Copyright 2002 Free Software Foundation, Inc.
+   Copyright 2002, 2003 Free Software Foundation, Inc.
    Contributed by Wasabi Systems, Inc.
 
    This file is part of GDB.
@@ -26,6 +26,7 @@
 #include "defs.h"
 #include "inferior.h"
 
+#include "sh-tdep.h"
 #include "shnbsd-tdep.h"
 
 /* Determine if PT_GETREGS fetches this register. */
@@ -46,7 +47,7 @@ fetch_inferior_registers (int regno)
                  (PTRACE_ARG3_TYPE) &inferior_registers, 0) == -1)
        perror_with_name ("Couldn't get registers");
 
-      sh_nbsd_supply_register ((char *) &inferior_registers, regno);
+      shnbsd_supply_reg ((char *) &inferior_registers, regno);
 
       if (regno != -1)
        return;
@@ -64,7 +65,7 @@ store_inferior_registers (int regno)
                  (PTRACE_ARG3_TYPE) &inferior_registers, 0) == -1)
        perror_with_name ("Couldn't get registers");
 
-      sh_nbsd_fill_register ((char *) &inferior_registers, regno);
+      shnbsd_fill_reg ((char *) &inferior_registers, regno);
 
       if (ptrace (PT_SETREGS, PIDGET (inferior_ptid),
                  (PTRACE_ARG3_TYPE) &inferior_registers, 0) == -1)
This page took 0.023767 seconds and 4 git commands to generate.