* linux-low.c (linux_wait_for_process): Don't clobber current_inferior

in debugging printf.
This commit is contained in:
Doug Evans 2008-12-12 23:14:28 +00:00
parent 97438e3f62
commit 896c7fbbd4
2 changed files with 5 additions and 0 deletions

View File

@ -1,5 +1,8 @@
2008-12-12 Doug Evans <dje@google.com>
* linux-low.c (linux_wait_for_process): Don't clobber current_inferior
in debugging printf.
* linux-low.c (handle_extended_wait): Simplify, use my_waitpid.
2008-12-09 Doug Evans <dje@google.com>

View File

@ -642,11 +642,13 @@ retry:
if (debug_threads
&& WIFSTOPPED (*wstatp))
{
struct thread_info *saved_inferior = current_inferior;
current_inferior = (struct thread_info *)
find_inferior_id (&all_threads, (*childp)->lwpid);
/* For testing only; i386_stop_pc prints out a diagnostic. */
if (the_low_target.get_pc != NULL)
get_stop_pc ();
current_inferior = saved_inferior;
}
}