diff options
author | Alan Modra <amodra@gmail.com> | 2011-01-14 12:35:56 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2011-01-14 12:35:56 +0000 |
commit | 4a97a0e54cba4caa5d994260f9c8ac9548628790 (patch) | |
tree | 5802880b8d0542816b00b72493804567ae7d3c92 /bfd/libbfd.c | |
parent | 82e96e07e5c45073273535cfe3ca665091199033 (diff) | |
download | gdb-4a97a0e54cba4caa5d994260f9c8ac9548628790.zip gdb-4a97a0e54cba4caa5d994260f9c8ac9548628790.tar.gz gdb-4a97a0e54cba4caa5d994260f9c8ac9548628790.tar.bz2 |
* bfd.c (bfd_perror): Flush stdout before and stderr after printing
error.
(_bfd_default_error_handler): Likewise.
* elf.c (print_segment_map): Likewise.
* libbfd.c (warn_deprecated): Likewise.
* som.c (som_sizeof_headers): No need to do so here.
* coff-i860.c: Replace use of printf for error messages with
_bfd_error_handler.
* coff-ppc.c: Likewise.
* coff-sh.c: Likewise.
* elf32-bfin.c: Likewise.
* elf32-dlx.c: Likewise.
* elf32-mep.c: Likewise.
* elf32-v850.c: Likewise.
* mach-o.c: Likewise.
* pef.c: Likewise.
Diffstat (limited to 'bfd/libbfd.c')
-rw-r--r-- | bfd/libbfd.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/bfd/libbfd.c b/bfd/libbfd.c index a66d9c6..8b24378 100644 --- a/bfd/libbfd.c +++ b/bfd/libbfd.c @@ -1,6 +1,6 @@ /* Assorted BFD support routines, only used internally. Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, - 2000, 2001, 2002, 2003, 2004, 2005, 2007, 2008, 2009 + 2000, 2001, 2002, 2003, 2004, 2005, 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc. Written by Cygnus Support. @@ -1021,6 +1021,7 @@ warn_deprecated (const char *what, if (~(size_t) func & ~mask) { + fflush (stdout); /* Note: separate sentences in order to allow for translation into other languages. */ if (func) @@ -1028,6 +1029,7 @@ warn_deprecated (const char *what, what, file, line, func); else fprintf (stderr, _("Deprecated %s called\n"), what); + fflush (stderr); mask |= ~(size_t) func; } } |