*** empty log message ***
[deliverable/binutils-gdb.git] / gdb / vax-nat.c
index d01d9489a137811d29167d351ab217aac7d13872..884fdddccb10a35f12bf663f5f5451fcbc31a3d0 100644 (file)
@@ -1,12 +1,12 @@
 /* Native-dependent code for VAX UNIXen (including older BSD's).
 
 /* Native-dependent code for VAX UNIXen (including older BSD's).
 
-   Copyright 2004, 2005 Free Software Foundation, Inc.
+   Copyright (C) 2004-2013 Free Software Foundation, Inc.
 
    This file is part of GDB.
 
    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
 
    This file is part of GDB.
 
    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
-   the Free Software Foundation; either version 2 of the License, or
+   the Free Software Foundation; either version 3 of the License, or
    (at your option) any later version.
 
    This program is distributed in the hope that it will be useful,
    (at your option) any later version.
 
    This program is distributed in the hope that it will be useful,
@@ -15,9 +15,7 @@
    GNU General Public License for more details.
 
    You should have received a copy of the GNU General Public License
    GNU General Public License for more details.
 
    You should have received a copy of the GNU General Public License
-   along with this program; if not, write to the Free Software
-   Foundation, Inc., 59 Temple Place - Suite 330,
-   Boston, MA 02111-1307, USA.  */
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
 
 #include "defs.h"
 #include "inferior.h"
 
 #include "defs.h"
 #include "inferior.h"
@@ -46,9 +44,9 @@
 #include "vax-tdep.h"
 #include "inf-ptrace.h"
 
 #include "vax-tdep.h"
 #include "inf-ptrace.h"
 
-/* Address of the user structure.  This is the the value for 32V; 3BSD
+/* Address of the user structure.  This is the value for 32V; 3BSD
    uses a different value, but hey, who's still using those systems?  */
    uses a different value, but hey, who's still using those systems?  */
-CORE_ADDR vax_kernel_u_addr = 0x80020000;
+static CORE_ADDR vax_kernel_u_addr = 0x80020000;
 
 /* Location of the user's stored registers; usage is `u.u_ar0[XX]'.
    For 4.2BSD and ULTRIX these are negative!  See <machine/reg.h>.  */
 
 /* Location of the user's stored registers; usage is `u.u_ar0[XX]'.
    For 4.2BSD and ULTRIX these are negative!  See <machine/reg.h>.  */
@@ -59,7 +57,7 @@ static int vax_register_index[] =
   AP, FP, SP, PC, PS
 };
 
   AP, FP, SP, PC, PS
 };
 
-CORE_ADDR
+static CORE_ADDR
 vax_register_u_addr (CORE_ADDR u_ar0, int regnum)
 {
   gdb_assert (regnum >= 0 && regnum < ARRAY_SIZE (vax_register_index));
 vax_register_u_addr (CORE_ADDR u_ar0, int regnum)
 {
   gdb_assert (regnum >= 0 && regnum < ARRAY_SIZE (vax_register_index));
@@ -69,7 +67,7 @@ vax_register_u_addr (CORE_ADDR u_ar0, int regnum)
 }
 
 static CORE_ADDR
 }
 
 static CORE_ADDR
-vax_register_u_offset (int regnum)
+vax_register_u_offset (struct gdbarch *gdbarch, int regnum, int store_p)
 {
   size_t u_ar0_offset = offsetof (struct user, u_ar0);
   CORE_ADDR u_ar0;
 {
   size_t u_ar0_offset = offsetof (struct user, u_ar0);
   CORE_ADDR u_ar0;
@@ -79,7 +77,7 @@ vax_register_u_offset (int regnum)
   pid = PIDGET (inferior_ptid);
   u_ar0 = ptrace (PT_READ_U, pid, u_ar0_offset, 0);
   if (errno)
   pid = PIDGET (inferior_ptid);
   u_ar0 = ptrace (PT_READ_U, pid, u_ar0_offset, 0);
   if (errno)
-    perror_with_name ("Unable to determine location of registers");
+    perror_with_name (_("Unable to determine location of registers"));
 
   return vax_register_u_addr (u_ar0, regnum) - vax_kernel_u_addr;
 }
 
   return vax_register_u_addr (u_ar0, regnum) - vax_kernel_u_addr;
 }
This page took 0.025103 seconds and 4 git commands to generate.