X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=bfd%2Fhppabsd-core.c;h=9cac968dd21285e2eba368b23347b15ae45848b2;hb=ec4f988b1bb001dc5bffe3f468c7cf8a600795ab;hp=44aee839c257030bac4c5ade37103c5294e4a4e3;hpb=53e09e0aaf3d13e4b893744e2fe79edde7edfd20;p=deliverable%2Fbinutils-gdb.git diff --git a/bfd/hppabsd-core.c b/bfd/hppabsd-core.c index 44aee839c2..9cac968dd2 100644 --- a/bfd/hppabsd-core.c +++ b/bfd/hppabsd-core.c @@ -1,12 +1,12 @@ /* BFD back-end for HPPA BSD core files. - Copyright 1993, 1994, 1995, 1998, 1999, 2001, 2002, 2003, 2004 - Free Software Foundation, Inc. + Copyright 1993, 1994, 1995, 1998, 1999, 2001, 2002, 2003, 2004, 2005, + 2006, 2007 Free Software Foundation, Inc. This file is part of BFD, the Binary File Descriptor library. 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 + 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, @@ -16,7 +16,8 @@ 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 02110-1301, USA. + Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, + MA 02110-1301, USA. Written by the Center for Software Science at the University of Utah and by Cygnus Support. @@ -33,8 +34,8 @@ I would not expect this to be of use to any other host/target, but you never know. */ -#include "bfd.h" #include "sysdep.h" +#include "bfd.h" #include "libbfd.h" #if defined (HOST_HPPABSD) @@ -57,8 +58,7 @@ static char *hppabsd_core_core_file_failing_command PARAMS ((bfd *)); static int hppabsd_core_core_file_failing_signal PARAMS ((bfd *)); -static bfd_boolean hppabsd_core_core_file_matches_executable_p - PARAMS ((bfd *, bfd *)); +#define hppabsd_core_core_file_matches_executable_p generic_core_file_matches_executable_p static void swap_abort PARAMS ((void)); @@ -91,11 +91,10 @@ make_bfd_asection (abfd, name, flags, size, offset, alignment_power) { asection *asect; - asect = bfd_make_section (abfd, name); + asect = bfd_make_section_with_flags (abfd, name, flags); if (!asect) return NULL; - asect->flags = flags; asect->size = size; asect->filepos = offset; asect->alignment_power = alignment_power; @@ -137,14 +136,11 @@ hppabsd_core_core_file_p (abfd) /* Sanity checks. Make sure the size of the core file matches the the size computed from information within the core itself. */ { - FILE *stream = bfd_cache_lookup (abfd); struct stat statbuf; - if (fstat (fileno (stream), &statbuf) < 0) - { - bfd_set_error (bfd_error_system_call); - return NULL; - } + if (bfd_stat (abfd, &statbuf) < 0) + return NULL; + if (NBPG * (UPAGES + u.u_dsize + u.u_ssize) > statbuf.st_size) { bfd_set_error (bfd_error_file_truncated); @@ -220,14 +216,6 @@ hppabsd_core_core_file_failing_signal (abfd) { return core_signal (abfd); } - -static bfd_boolean -hppabsd_core_core_file_matches_executable_p (core_bfd, exec_bfd) - bfd *core_bfd, *exec_bfd; -{ - /* There's no way to know this... */ - return TRUE; -} /* If somebody calls any byte-swapping routines, shoot them. */ static void