mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2024-12-02 17:16:42 +00:00
Replace "fprintf (stderr..." by "fprintf_unfiltered (gdb_stdlog..."
This is an obvious replacement of "fprintf (stderr..." by "fprintf_unfiltered (gdb_stdlog...", which is the standard to use in these cases. gdb/ChangeLog: 2014-09-16 Sergio Durigan Junior <sergiodj@redhat.com> PR cli/7233 * linux-nat.c (linux_nat_wait_1): Replace "fprintf (stderr..." by "fprintf_unfiltered (gdb_stdlog...)".
This commit is contained in:
parent
91c190590a
commit
2f693f9d21
@ -1,3 +1,9 @@
|
||||
2014-09-16 Sergio Durigan Junior <sergiodj@redhat.com>
|
||||
|
||||
PR cli/7233
|
||||
* linux-nat.c (linux_nat_wait_1): Replace "fprintf (stderr..." by
|
||||
"fprintf_unfiltered (gdb_stdlog...)".
|
||||
|
||||
2014-09-16 Patrick Palka <patrick@parcs.ath.cx>
|
||||
|
||||
PR breakpoints/12526
|
||||
|
@ -3326,9 +3326,10 @@ retry:
|
||||
gdb_assert (lp->resumed);
|
||||
|
||||
if (debug_linux_nat)
|
||||
fprintf (stderr,
|
||||
"LWP %ld got an event %06x, leaving pending.\n",
|
||||
ptid_get_lwp (lp->ptid), lp->status);
|
||||
fprintf_unfiltered (gdb_stdlog,
|
||||
"LWP %ld got an event %06x, "
|
||||
"leaving pending.\n",
|
||||
ptid_get_lwp (lp->ptid), lp->status);
|
||||
|
||||
if (WIFSTOPPED (lp->status))
|
||||
{
|
||||
@ -3351,11 +3352,13 @@ retry:
|
||||
lp->status = 0;
|
||||
|
||||
if (debug_linux_nat)
|
||||
fprintf (stderr,
|
||||
"LLW: LWP %ld hit a breakpoint while"
|
||||
" waiting for another process;"
|
||||
" cancelled it\n",
|
||||
ptid_get_lwp (lp->ptid));
|
||||
fprintf_unfiltered (gdb_stdlog,
|
||||
"LLW: LWP %ld hit a "
|
||||
"breakpoint while "
|
||||
"waiting for another "
|
||||
"process; "
|
||||
"cancelled it\n",
|
||||
ptid_get_lwp (lp->ptid));
|
||||
}
|
||||
}
|
||||
else
|
||||
@ -3364,9 +3367,10 @@ retry:
|
||||
else if (WIFEXITED (lp->status) || WIFSIGNALED (lp->status))
|
||||
{
|
||||
if (debug_linux_nat)
|
||||
fprintf (stderr,
|
||||
"Process %ld exited while stopping LWPs\n",
|
||||
ptid_get_lwp (lp->ptid));
|
||||
fprintf_unfiltered (gdb_stdlog,
|
||||
"Process %ld exited while stopping "
|
||||
"LWPs\n",
|
||||
ptid_get_lwp (lp->ptid));
|
||||
|
||||
/* This was the last lwp in the process. Since
|
||||
events are serialized to GDB core, and we can't
|
||||
|
Loading…
Reference in New Issue
Block a user