diff options
author | Mark Kettenis <kettenis@gnu.org> | 2005-01-10 20:56:17 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@gnu.org> | 2005-01-10 20:56:17 +0000 |
commit | 2a2de4ce735c2707398a8a7ab3b1f13efd45508b (patch) | |
tree | b76b14dc5f611a1ccc961670265f9e5a4bcadb80 /gdb/vax-nat.c | |
parent | 8785ced03ac5b8817f23f2bbfa590763a535cac2 (diff) | |
download | gdb-2a2de4ce735c2707398a8a7ab3b1f13efd45508b.zip gdb-2a2de4ce735c2707398a8a7ab3b1f13efd45508b.tar.gz gdb-2a2de4ce735c2707398a8a7ab3b1f13efd45508b.tar.bz2 |
* vax-nat.c: Update copyright year. Include "inf-ptrace.h".
(vax_register_u_offset): Make statuc.
(_initialize_vax_nat): Construct and add target vector.
* config/vax/vax.mh (NATDEPFILES): Remove infptrace.o and
inftarg.o. Add inf-ptrace.o.
* Makefile.in (vax-nat.o): Update dependencies.
Diffstat (limited to 'gdb/vax-nat.c')
-rw-r--r-- | gdb/vax-nat.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/gdb/vax-nat.c b/gdb/vax-nat.c index 9dc0c51..d01d948 100644 --- a/gdb/vax-nat.c +++ b/gdb/vax-nat.c @@ -1,6 +1,6 @@ /* Native-dependent code for VAX UNIXen (including older BSD's). - Copyright 2004 Free Software Foundation, Inc. + Copyright 2004, 2005 Free Software Foundation, Inc. This file is part of GDB. @@ -44,6 +44,7 @@ #endif #include "vax-tdep.h" +#include "inf-ptrace.h" /* 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? */ @@ -66,9 +67,8 @@ vax_register_u_addr (CORE_ADDR u_ar0, int regnum) /* Type is `int *u_ar0'. See <sys/user.h>. */ return u_ar0 + vax_register_index[regnum - VAX_R0_REGNUM] * 4; } - -CORE_ADDR +static CORE_ADDR vax_register_u_offset (int regnum) { size_t u_ar0_offset = offsetof (struct user, u_ar0); @@ -103,4 +103,6 @@ _initialize_vax_nat (void) names[1].n_name = NULL; if (nlist (_PATH_UNIX, names) == 0) vax_kernel_u_addr = names[0].n_value; + + add_target (inf_ptrace_trad_target (vax_register_u_offset)); } |