X-Git-Url: http://drtracing.org/?a=blobdiff_plain;f=bfd%2Fcorefile.c;h=da9d4d739dc5d4310af99267ba0775e466de432a;hb=45d6a902ae8c0f9a0dc22ba33e61f3e6f8bd6492;hp=212f519ce8a58c37f4582cbf7e23a6e4b2fe0836;hpb=ed288bb597072176e84fc8279707a3f2f475779b;p=deliverable%2Fbinutils-gdb.git diff --git a/bfd/corefile.c b/bfd/corefile.c index 212f519ce8..da9d4d739d 100644 --- a/bfd/corefile.c +++ b/bfd/corefile.c @@ -1,5 +1,6 @@ /* Core file generic interface routines for BFD. - Copyright (C) 1990, 91, 92, 93, 94 Free Software Foundation, Inc. + Copyright 1990, 1991, 1992, 1993, 1994, 2000, 2001, 2002 + Free Software Foundation, Inc. Written by Cygnus Support. This file is part of BFD, the Binary File Descriptor library. @@ -30,13 +31,12 @@ DESCRIPTION #include "sysdep.h" #include "libbfd.h" - /* FUNCTION bfd_core_file_failing_command SYNOPSIS - CONST char *bfd_core_file_failing_command(bfd *abfd); + const char *bfd_core_file_failing_command(bfd *abfd); DESCRIPTION Return a read-only string explaining which program was running @@ -44,7 +44,7 @@ DESCRIPTION */ -CONST char * +const char * bfd_core_file_failing_command (abfd) bfd *abfd; { @@ -78,27 +78,26 @@ bfd_core_file_failing_signal (abfd) return BFD_SEND (abfd, _core_file_failing_signal, (abfd)); } - /* FUNCTION core_file_matches_executable_p SYNOPSIS - boolean core_file_matches_executable_p + bfd_boolean core_file_matches_executable_p (bfd *core_bfd, bfd *exec_bfd); DESCRIPTION - Return <> if the core file attached to @var{core_bfd} + Return <> if the core file attached to @var{core_bfd} was generated by a run of the executable file attached to - @var{exec_bfd}, <> otherwise. + @var{exec_bfd}, <> otherwise. */ -boolean +bfd_boolean core_file_matches_executable_p (core_bfd, exec_bfd) bfd *core_bfd, *exec_bfd; { if ((core_bfd->format != bfd_core) || (exec_bfd->format != bfd_object)) { bfd_set_error (bfd_error_wrong_format); - return false; + return FALSE; } return BFD_SEND (core_bfd, _core_file_matches_executable_p,