1// OBSOLETE /* Native definitions for GDB on DECstations, Sony News. and MIPS Riscos systems
2// OBSOLETE    Copyright 1986, 1987, 1989, 1992, 1995, 1996, 2000
3// OBSOLETE    Free Software Foundation, Inc.
4// OBSOLETE    Contributed by Per Bothner(bothner@cs.wisc.edu) at U.Wisconsin
5// OBSOLETE    and by Alessandro Forin(af@cs.cmu.edu) at CMU
6// OBSOLETE
7// OBSOLETE    This file is part of GDB.
8// OBSOLETE
9// OBSOLETE    This program is free software; you can redistribute it and/or modify
10// OBSOLETE    it under the terms of the GNU General Public License as published by
11// OBSOLETE    the Free Software Foundation; either version 2 of the License, or
12// OBSOLETE    (at your option) any later version.
13// OBSOLETE
14// OBSOLETE    This program is distributed in the hope that it will be useful,
15// OBSOLETE    but WITHOUT ANY WARRANTY; without even the implied warranty of
16// OBSOLETE    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17// OBSOLETE    GNU General Public License for more details.
18// OBSOLETE
19// OBSOLETE    You should have received a copy of the GNU General Public License
20// OBSOLETE    along with this program; if not, write to the Free Software
21// OBSOLETE    Foundation, Inc., 59 Temple Place - Suite 330,
22// OBSOLETE    Boston, MA 02111-1307, USA.  */
23// OBSOLETE
24// OBSOLETE /* Override copies of {fetch,store}_inferior_registers in infptrace.c.  */
25// OBSOLETE #define FETCH_INFERIOR_REGISTERS
26// OBSOLETE
27// OBSOLETE /* Figure out where the longjmp will land.  We expect that we have just entered
28// OBSOLETE    longjmp and haven't yet setup the stack frame, so the args are still in the
29// OBSOLETE    argument regs.  a0 (CALL_ARG0) points at the jmp_buf structure from which we
30// OBSOLETE    extract the pc (JB_PC) that we will land at.  The pc is copied into ADDR.
31// OBSOLETE    This routine returns true on success */
32// OBSOLETE
33// OBSOLETE #define GET_LONGJMP_TARGET(ADDR) get_longjmp_target(ADDR)
34// OBSOLETE extern int get_longjmp_target (CORE_ADDR *);
35