diff options
author | Kevin Buettner <kevinb@redhat.com> | 2001-02-22 03:01:27 +0000 |
---|---|---|
committer | Kevin Buettner <kevinb@redhat.com> | 2001-02-22 03:01:27 +0000 |
commit | 8b4258487bf511901cb98c22b5a745ef982c0b5e (patch) | |
tree | 153cf011abfdbae2be708e98a7dbc5bcff4e72d7 /gdb/config/ia64/tm-aix.h | |
parent | 43e1c4bec5e6ae00906f14942ab1e25f4eaf818a (diff) | |
download | gdb-8b4258487bf511901cb98c22b5a745ef982c0b5e.tar.gz |
Made changes to shared library support and added more of the support needed
for AIX/IA-64.
Diffstat (limited to 'gdb/config/ia64/tm-aix.h')
-rw-r--r-- | gdb/config/ia64/tm-aix.h | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/gdb/config/ia64/tm-aix.h b/gdb/config/ia64/tm-aix.h new file mode 100644 index 00000000000..91068f81f6b --- /dev/null +++ b/gdb/config/ia64/tm-aix.h @@ -0,0 +1,32 @@ +/* Definitions to target GDB to GNU/Linux on IA-64 running AIX. + Copyright (C) 2000, 2001 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 + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + 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. */ + +#ifndef TM_AIX_H +#define TM_AIX_H + +#include "ia64/tm-ia64.h" +#include "tm-sysv4.h" + +#define TARGET_ELF64 + +extern int ia64_aix_in_sigtramp (CORE_ADDR pc, char *func_name); +#define IN_SIGTRAMP(pc,func_name) ia64_aix_in_sigtramp (pc, func_name) + +#endif /* #ifndef TM_AIX_H */ |