diff options
author | Andreas Arnez <arnez@linux.vnet.ibm.com> | 2013-12-03 11:35:35 +0000 |
---|---|---|
committer | Andreas Krebbel <krebbel@linux.vnet.ibm.com> | 2014-09-30 09:14:33 +0200 |
commit | a904c024b0760911288e865c62d91578fd887e3b (patch) | |
tree | 382b519df903251ba5dc81113b0b3532c9bbb02f /gdb/fbsd-tdep.h | |
parent | 8f0435f75e3c9676d2e177ce055fed3155fd9476 (diff) | |
download | gdb-a904c024b0760911288e865c62d91578fd887e3b.zip gdb-a904c024b0760911288e865c62d91578fd887e3b.tar.gz gdb-a904c024b0760911288e865c62d91578fd887e3b.tar.bz2 |
Add multi-arch capable 'fbsd_make_corefile_notes' variant
This creates a new version of the FreeBSD core file note generation
logic in the new target-dependent file "fbsd-tdep.c". The new version
is mostly copied from "fbsd-nat.c", but uses the iterator instead of
regset_from_core_section and defines fbsd_make_corefile_notes as a
gdbarch method instead of a target method.
Consecutive architecture-dependent changes exploit the new version,
migrating away from the target method. When all FreeBSD targets are
changed, the target method can go away.
gdb/ChangeLog:
* fbsd-tdep.c: New file.
* fbsd-tdep.h: New file.
* Makefile.in (ALL_TARGET_OBS): Add fbsd-tdep.o.
(HFILES_NO_SRCDIR): Add fbsd-tdep.h.
(ALLDEPFILES): Add fbsd-tdep.c.
Diffstat (limited to 'gdb/fbsd-tdep.h')
-rw-r--r-- | gdb/fbsd-tdep.h | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/gdb/fbsd-tdep.h b/gdb/fbsd-tdep.h new file mode 100644 index 0000000..0a592ae --- /dev/null +++ b/gdb/fbsd-tdep.h @@ -0,0 +1,25 @@ +/* Target-dependent code for FreeBSD, architecture independent. + + Copyright (C) 2009-2014 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 3 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, see <http://www.gnu.org/licenses/>. */ + +#ifndef FBSD_TDEP_H +#define FBSD_TDEP_H + +extern void fbsd_init_abi (struct gdbarch_info info, struct gdbarch *gdbarch); + +#endif /* fbsd-tdep.h */ |