diff options
author | Ulrich Weigand <uweigand@de.ibm.com> | 2012-01-20 09:42:44 +0000 |
---|---|---|
committer | Ulrich Weigand <uweigand@de.ibm.com> | 2012-01-20 09:42:44 +0000 |
commit | e714e1bf77429248e080fee199c87376a8649184 (patch) | |
tree | 6d061758ba7fd610a4b282f01a3bde7c78a01fab /gdb/inferior.c | |
parent | 618d666674ca5ab37b3632bf719afa27703f6a72 (diff) | |
download | gdb-e714e1bf77429248e080fee199c87376a8649184.zip gdb-e714e1bf77429248e080fee199c87376a8649184.tar.gz gdb-e714e1bf77429248e080fee199c87376a8649184.tar.bz2 |
2012-01-20 Pedro Alves <palves@redhat.com>
Ulrich Weigand <ulrich.weigand@linaro.org>
* inferior.h (struct inferior): Add fake_pid_p.
* inferior.c (exit_inferior_1): Clear fake_pid_p.
* remote.c (remote_start_remote): Set fake_pid_p if we have to use
magic_null_ptid since the remote side doesn't provide a real PID.
Diffstat (limited to 'gdb/inferior.c')
-rw-r--r-- | gdb/inferior.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gdb/inferior.c b/gdb/inferior.c index 65948c4..4df8c77 100644 --- a/gdb/inferior.c +++ b/gdb/inferior.c @@ -276,6 +276,7 @@ exit_inferior_1 (struct inferior *inftoex, int silent) observer_notify_inferior_exit (inf); inf->pid = 0; + inf->fake_pid_p = 0; if (inf->vfork_parent != NULL) { inf->vfork_parent->vfork_child = NULL; |