2002-08-16 00:24:01 +02:00
|
|
|
/* Target-dependent code for the GNU Hurd.
|
2008-01-01 23:53:26 +01:00
|
|
|
Copyright (C) 2002, 2003, 2007, 2008 Free Software Foundation, Inc.
|
1999-04-16 03:35:26 +02:00
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
This file is part of GDB.
|
1999-04-16 03:35:26 +02:00
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
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
|
2007-08-23 20:08:50 +02:00
|
|
|
the Free Software Foundation; either version 3 of the License, or
|
1999-07-07 22:19:36 +02:00
|
|
|
(at your option) any later version.
|
1999-04-16 03:35:26 +02:00
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
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.
|
1999-04-16 03:35:26 +02:00
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
You should have received a copy of the GNU General Public License
|
2007-08-23 20:08:50 +02:00
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>. */
|
1999-04-16 03:35:26 +02:00
|
|
|
|
2002-08-16 00:24:01 +02:00
|
|
|
#include "defs.h"
|
2003-01-05 00:38:46 +01:00
|
|
|
#include "osabi.h"
|
2007-10-24 23:21:16 +02:00
|
|
|
#include "solib-svr4.h"
|
1999-04-16 03:35:26 +02:00
|
|
|
|
2002-08-16 00:24:01 +02:00
|
|
|
#include "i386-tdep.h"
|
|
|
|
|
|
|
|
static void
|
|
|
|
i386gnu_init_abi (struct gdbarch_info info, struct gdbarch *gdbarch)
|
|
|
|
{
|
|
|
|
struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
|
|
|
|
|
|
|
|
/* GNU uses ELF. */
|
|
|
|
i386_elf_init_abi (info, gdbarch);
|
|
|
|
|
2007-10-24 23:21:16 +02:00
|
|
|
set_solib_svr4_fetch_link_map_offsets
|
|
|
|
(gdbarch, svr4_ilp32_fetch_link_map_offsets);
|
|
|
|
|
2002-08-16 00:24:01 +02:00
|
|
|
tdep->jb_pc_offset = 20; /* From <bits/setjmp.h>. */
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Provide a prototype to silence -Wmissing-prototypes. */
|
|
|
|
extern void _initialize_i386gnu_tdep (void);
|
|
|
|
|
|
|
|
void
|
|
|
|
_initialize_i386gnu_tdep (void)
|
|
|
|
{
|
2002-12-21 20:58:07 +01:00
|
|
|
gdbarch_register_osabi (bfd_arch_i386, 0, GDB_OSABI_HURD, i386gnu_init_abi);
|
2002-08-16 00:24:01 +02:00
|
|
|
}
|