mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-24 20:28:28 +08:00
* server.c (start_inferior): Set last_ptid in --wrapper case.
This commit is contained in:
@ -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>
|
2012-01-06 Yao Qi <yao@codesourcery.com>
|
||||||
|
|
||||||
* tracepoint.c [IN_PROCESS_AGENT] (debug_threads): Macro
|
* tracepoint.c [IN_PROCESS_AGENT] (debug_threads): Macro
|
||||||
|
@ -284,7 +284,7 @@ start_inferior (char **argv)
|
|||||||
resume_info.kind = resume_continue;
|
resume_info.kind = resume_continue;
|
||||||
resume_info.sig = 0;
|
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)
|
if (last_status.kind != TARGET_WAITKIND_STOPPED)
|
||||||
return signal_pid;
|
return signal_pid;
|
||||||
@ -293,7 +293,7 @@ start_inferior (char **argv)
|
|||||||
{
|
{
|
||||||
(*the_target->resume) (&resume_info, 1);
|
(*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)
|
if (last_status.kind != TARGET_WAITKIND_STOPPED)
|
||||||
return signal_pid;
|
return signal_pid;
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user