X-Git-Url: http://drtracing.org/?a=blobdiff_plain;f=gdb%2Fvax-nat.c;h=9a6627518d1d1b5ad784cc8f9db3544b1ee0e975;hb=9cdcc3e8b3ed0291e48a9783f4db6fb52cacd936;hp=830527d08e3ad883bad48f684fa8e8f5076204a6;hpb=01f0fe5e0450edf168c1f612feb93cf588e4e7ea;p=deliverable%2Fbinutils-gdb.git diff --git a/gdb/vax-nat.c b/gdb/vax-nat.c index 830527d08e..9a6627518d 100644 --- a/gdb/vax-nat.c +++ b/gdb/vax-nat.c @@ -1,12 +1,13 @@ /* Native-dependent code for VAX UNIXen (including older BSD's). - Copyright (C) 2004, 2005 Free Software Foundation, Inc. + Copyright (C) 2004, 2005, 2007, 2008, 2009, 2010 + 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 - 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, @@ -15,9 +16,7 @@ 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., 51 Franklin Street, Fifth Floor, - Boston, MA 02110-1301, USA. */ + along with this program. If not, see . */ #include "defs.h" #include "inferior.h" @@ -48,7 +47,7 @@ /* Address of the user structure. This is the the value for 32V; 3BSD 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 . */ @@ -59,7 +58,7 @@ static int vax_register_index[] = 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)); @@ -69,7 +68,7 @@ vax_register_u_addr (CORE_ADDR u_ar0, int regnum) } 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;