* server.c (start_inferior): Set last_ptid in --wrapper case.

This commit is contained in:
Doug Evans 2012-01-09 17:17:50 +00:00
parent 2e6af8c045
commit 06db92f054
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2012-01-09 Doug Evans <dje@google.com>
* server.c (start_inferior): Set last_ptid in --wrapper case.
2012-01-06 Yao Qi <yao@codesourcery.com>
* tracepoint.c [IN_PROCESS_AGENT] (debug_threads): Macro

View File

@ -284,7 +284,7 @@ start_inferior (char **argv)
resume_info.kind = resume_continue;
resume_info.sig = 0;
mywait (pid_to_ptid (signal_pid), &last_status, 0, 0);
last_ptid = mywait (pid_to_ptid (signal_pid), &last_status, 0, 0);
if (last_status.kind != TARGET_WAITKIND_STOPPED)
return signal_pid;
@ -293,7 +293,7 @@ start_inferior (char **argv)
{
(*the_target->resume) (&resume_info, 1);
mywait (pid_to_ptid (signal_pid), &last_status, 0, 0);
last_ptid = mywait (pid_to_ptid (signal_pid), &last_status, 0, 0);
if (last_status.kind != TARGET_WAITKIND_STOPPED)
return signal_pid;