diff options
author | Joel Brobecker <brobecker@gnat.com> | 2005-12-23 10:19:40 +0000 |
---|---|---|
committer | Joel Brobecker <brobecker@gnat.com> | 2005-12-23 10:19:40 +0000 |
commit | 69d246d9338a35e64b2244835ac6e77164be668a (patch) | |
tree | 65c68c432493e0ca357e69aada00e2ab901b8e57 /bfd/trad-core.c | |
parent | 97938b6077335c1514876a2a0199ad4a92167537 (diff) | |
download | fsf-binutils-gdb-69d246d9338a35e64b2244835ac6e77164be668a.zip fsf-binutils-gdb-69d246d9338a35e64b2244835ac6e77164be668a.tar.gz fsf-binutils-gdb-69d246d9338a35e64b2244835ac6e77164be668a.tar.bz2 |
* corefile.c (generic_core_file_matches_executable_p): New function.
* libbfd-in.h (generic_core_file_matches_executable_p): Add
declaration.
* libbfd.h: Regenerate.
* hpux-core.c: ANSIfy function declarations and prototypes.
(thread_section_p): Manually expand bfd_section_name macro
to make it clear that parameter ABFD is not used.
(hpux_core_core_file_matches_executable_p): Delete, replaced
by macro pointing to generic_core_file_matches_executable_p.
* aix386-core.c: Replace core_file_matches_executable_p null
implementation by generic_core_file_matches_executable_p by
using a macro.
* aix5ppc-core.c: Likewise.
* cisco-core.c: Likewise.
* hppabsd-core.c: Likewise.
* irix-core.c: Likewise.
* lynx-core.c: Likewise.
* mach-o.c: Likewise.
* netbsd-core.c: Likewise.
* osf-core.c: Likewise.
* ptrace-core.c: Likewise.
* sco5-core.c: Likewise.
* trad-core.c: Likewise.
Diffstat (limited to 'bfd/trad-core.c')
-rw-r--r-- | bfd/trad-core.c | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/bfd/trad-core.c b/bfd/trad-core.c index 2f8c9f9..cb4111f 100644 --- a/bfd/trad-core.c +++ b/bfd/trad-core.c @@ -65,8 +65,7 @@ struct trad_core_struct const bfd_target *trad_unix_core_file_p PARAMS ((bfd *abfd)); char * trad_unix_core_file_failing_command PARAMS ((bfd *abfd)); int trad_unix_core_file_failing_signal PARAMS ((bfd *abfd)); -bfd_boolean trad_unix_core_file_matches_executable_p - PARAMS ((bfd *core_bfd, bfd *exec_bfd)); +#define trad_unix_core_file_matches_executable_p generic_core_file_matches_executable_p static void swap_abort PARAMS ((void)); /* Handle 4.2-style (and perhaps also sysV-style) core dump file. */ @@ -253,14 +252,6 @@ trad_unix_core_file_failing_signal (ignore_abfd) return -1; /* FIXME, where is it? */ #endif } - -bfd_boolean -trad_unix_core_file_matches_executable_p (core_bfd, exec_bfd) - bfd *core_bfd ATTRIBUTE_UNUSED; - bfd *exec_bfd ATTRIBUTE_UNUSED; -{ - return TRUE; /* FIXME, We have no way of telling at this point */ -} /* If somebody calls any byte-swapping routines, shoot them. */ static void |