xref: /openbsd-src/gnu/usr.bin/binutils/gdb/config/mips/tm-obsd64.h (revision a697657fe2e8c8af1819b48b3d7c2a9a91cb11fb)
1*a697657fSkettenis /* Target-dependent definitions for OpenBSD/mips64.
2*a697657fSkettenis 
3*a697657fSkettenis    Copyright 2001, 2002, 2004 Free Software Foundation, Inc.
4*a697657fSkettenis 
5*a697657fSkettenis    This file is part of GDB.
6*a697657fSkettenis 
7*a697657fSkettenis    This program is free software; you can redistribute it and/or modify
8*a697657fSkettenis    it under the terms of the GNU General Public License as published by
9*a697657fSkettenis    the Free Software Foundation; either version 2 of the License, or
10*a697657fSkettenis    (at your option) any later version.
11*a697657fSkettenis 
12*a697657fSkettenis    This program is distributed in the hope that it will be useful,
13*a697657fSkettenis    but WITHOUT ANY WARRANTY; without even the implied warranty of
14*a697657fSkettenis    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15*a697657fSkettenis    GNU General Public License for more details.
16*a697657fSkettenis 
17*a697657fSkettenis    You should have received a copy of the GNU General Public License
18*a697657fSkettenis    along with this program; if not, write to the Free Software
19*a697657fSkettenis    Foundation, Inc., 59 Temple Place - Suite 330,
20*a697657fSkettenis    Boston, MA 02111-1307, USA.  */
21*a697657fSkettenis 
22*a697657fSkettenis #ifndef TM_OBSD64_H
23*a697657fSkettenis #define TM_OBSD64_H
24*a697657fSkettenis 
25*a697657fSkettenis #include "solib.h"
26*a697657fSkettenis 
27*a697657fSkettenis #undef IN_SOLIB_DYNSYM_RESOLVE_CODE
28*a697657fSkettenis #define IN_SOLIB_DYNSYM_RESOLVE_CODE(PC) mips64obsd_in_dynsym_resolve_code (PC)
29*a697657fSkettenis int mips64obsd_in_dynsym_resolve_code (CORE_ADDR pc);
30*a697657fSkettenis 
31*a697657fSkettenis #endif /* TM_OBSD64_H */
32