HPMERGE:
Pass gdb_stderr instead of stderr. In serial.c, fix call to gdb_fclose() - pass gdb_file** not gdb_file*
This commit is contained in:
parent
8bdec905f1
commit
c634a08ff8
5 changed files with 25 additions and 18 deletions
|
@ -1,3 +1,10 @@
|
|||
Mon Jan 18 12:03:47 1999 Andrew Cagney <cagney@b1.cygnus.com>
|
||||
|
||||
* serial.c (serial_close): gdb_fclose tages gdb_file** arg, not
|
||||
gdb_file*.
|
||||
|
||||
* f-valprint.c, target.c, gdbarch.c: Pass gdb_stderr not stderr.
|
||||
|
||||
Mon Jan 18 10:46:12 1999 Andrew Cagney <cagney@b1.cygnus.com>
|
||||
|
||||
* stack.c (print_frame_info_base): Don't cast call to
|
||||
|
|
|
@ -681,7 +681,7 @@ info_common_command (comname, from_tty)
|
|||
while (entry != NULL)
|
||||
{
|
||||
printf_filtered ("%s = ",SYMBOL_NAME(entry->symbol));
|
||||
print_variable_value (entry->symbol,fi,stdout);
|
||||
print_variable_value (entry->symbol, fi, gdb_stdout);
|
||||
printf_filtered ("\n");
|
||||
entry = entry->next;
|
||||
}
|
||||
|
|
|
@ -374,7 +374,7 @@ register_gdbarch_init (bfd_architecture, init)
|
|||
}
|
||||
/* log it */
|
||||
if (gdbarch_debug)
|
||||
fprintf_unfiltered (stderr, "register_gdbarch_init (%s, 0x%08lx)\n",
|
||||
fprintf_unfiltered (gdb_stderr, "register_gdbarch_init (%s, 0x%08lx)\n",
|
||||
bfd_arch_info->printable_name,
|
||||
(long) init);
|
||||
/* Append it */
|
||||
|
@ -474,31 +474,31 @@ gdbarch_update (info)
|
|||
if (rego == NULL)
|
||||
{
|
||||
if (gdbarch_debug)
|
||||
fprintf_unfiltered (stderr, "gdbarch_update: No matching architecture\n");
|
||||
fprintf_unfiltered (gdb_stderr, "gdbarch_update: No matching architecture\n");
|
||||
return 0;
|
||||
}
|
||||
|
||||
if (gdbarch_debug)
|
||||
{
|
||||
fprintf_unfiltered (stderr,
|
||||
fprintf_unfiltered (gdb_stderr,
|
||||
"gdbarch_update: info.bfd_architecture %d (%s)\n",
|
||||
info.bfd_architecture,
|
||||
bfd_lookup_arch (info.bfd_architecture, 0)->printable_name);
|
||||
fprintf_unfiltered (stderr,
|
||||
fprintf_unfiltered (gdb_stderr,
|
||||
"gdbarch_update: info.bfd_arch_info %s\n",
|
||||
(info.bfd_arch_info != NULL
|
||||
? info.bfd_arch_info->printable_name
|
||||
: "(null)"));
|
||||
fprintf_unfiltered (stderr,
|
||||
fprintf_unfiltered (gdb_stderr,
|
||||
"gdbarch_update: info.byte_order %d (%s)\n",
|
||||
info.byte_order,
|
||||
(info.byte_order == BIG_ENDIAN ? "big"
|
||||
: info.byte_order == LITTLE_ENDIAN ? "little"
|
||||
: "default"));
|
||||
fprintf_unfiltered (stderr,
|
||||
fprintf_unfiltered (gdb_stderr,
|
||||
"gdbarch_update: info.abfd 0x%lx\n",
|
||||
(long) info.abfd);
|
||||
fprintf_unfiltered (stderr,
|
||||
fprintf_unfiltered (gdb_stderr,
|
||||
"gdbarch_update: info.tdep_info 0x%lx\n",
|
||||
(long) info.tdep_info);
|
||||
}
|
||||
|
@ -510,7 +510,7 @@ gdbarch_update (info)
|
|||
if (new_gdbarch == NULL)
|
||||
{
|
||||
if (gdbarch_debug)
|
||||
fprintf_unfiltered (stderr, "gdbarch_update: Target rejected architecture\n");
|
||||
fprintf_unfiltered (gdb_stderr, "gdbarch_update: Target rejected architecture\n");
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
@ -518,7 +518,7 @@ gdbarch_update (info)
|
|||
if (current_gdbarch == new_gdbarch)
|
||||
{
|
||||
if (gdbarch_debug)
|
||||
fprintf_unfiltered (stderr, "gdbarch_update: Architecture 0x%08lx (%s) unchanged\n",
|
||||
fprintf_unfiltered (gdb_stderr, "gdbarch_update: Architecture 0x%08lx (%s) unchanged\n",
|
||||
(long) new_gdbarch,
|
||||
new_gdbarch->bfd_arch_info->printable_name);
|
||||
return 1;
|
||||
|
@ -535,7 +535,7 @@ gdbarch_update (info)
|
|||
if ((*list)->gdbarch == new_gdbarch)
|
||||
{
|
||||
if (gdbarch_debug)
|
||||
fprintf_unfiltered (stderr, "gdbarch_update: Previous architecture 0x%08lx (%s) selected\n",
|
||||
fprintf_unfiltered (gdb_stderr, "gdbarch_update: Previous architecture 0x%08lx (%s) selected\n",
|
||||
(long) new_gdbarch,
|
||||
new_gdbarch->bfd_arch_info->printable_name);
|
||||
current_gdbarch = new_gdbarch;
|
||||
|
@ -553,23 +553,23 @@ gdbarch_update (info)
|
|||
current_gdbarch = new_gdbarch;
|
||||
if (gdbarch_debug)
|
||||
{
|
||||
fprintf_unfiltered (stderr,
|
||||
fprintf_unfiltered (gdb_stderr,
|
||||
"gdbarch_update: New architecture 0x%08lx (%s) selected\n",
|
||||
(long) new_gdbarch,
|
||||
new_gdbarch->bfd_arch_info->printable_name);
|
||||
fprintf_unfiltered (stderr,
|
||||
fprintf_unfiltered (gdb_stderr,
|
||||
"gdbarch_update: TARGET_BYTE_ORDER = %d (%s)\n",
|
||||
TARGET_BYTE_ORDER,
|
||||
(TARGET_BYTE_ORDER == BIG_ENDIAN ? "big"
|
||||
: TARGET_BYTE_ORDER == LITTLE_ENDIAN ? "little"
|
||||
: "default"));
|
||||
fprintf_unfiltered (stderr,
|
||||
fprintf_unfiltered (gdb_stderr,
|
||||
"gdbarch_update: TARGET_LONG_BIT = %d\n",
|
||||
TARGET_LONG_BIT);
|
||||
fprintf_unfiltered (stderr,
|
||||
fprintf_unfiltered (gdb_stderr,
|
||||
"gdbarch_update: TARGET_LONG_LONG_BIT = %d\n",
|
||||
TARGET_LONG_LONG_BIT);
|
||||
fprintf_unfiltered (stderr,
|
||||
fprintf_unfiltered (gdb_stderr,
|
||||
"gdbarch_update: TARGET_PTR_BIT = %d\n",
|
||||
TARGET_PTR_BIT);
|
||||
}
|
||||
|
|
|
@ -309,7 +309,7 @@ serial_close (scb, really_close)
|
|||
serial_current_type = 0;
|
||||
|
||||
/* XXX - What if serial_logfp == gdb_stdout or gdb_stderr? */
|
||||
gdb_fclose (serial_logfp);
|
||||
gdb_fclose (&serial_logfp);
|
||||
serial_logfp = NULL;
|
||||
}
|
||||
|
||||
|
|
|
@ -2487,7 +2487,7 @@ debug_to_query (type, req, resp, siz)
|
|||
|
||||
retval = debug_target.to_query (type, req, resp, siz);
|
||||
|
||||
fprintf_unfiltered (stderr, "target_query (%c, %s, %s, %d) = %d\n", type, req, resp, *siz, retval);
|
||||
fprintf_unfiltered (gdb_stderr, "target_query (%c, %s, %s, %d) = %d\n", type, req, resp, *siz, retval);
|
||||
|
||||
return retval;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue