diff options
author | Pedro Alves <palves@redhat.com> | 2010-08-06 19:45:58 +0000 |
---|---|---|
committer | Pedro Alves <palves@redhat.com> | 2010-08-06 19:45:58 +0000 |
commit | c820c52a914cc9d7c63cb41ad396f4ddffff2196 (patch) | |
tree | eb5cf655fddfdef09aea873fc7cec3b2df311b3e /gdb/thread.c | |
parent | 8da614df6415a7aa01ba8ebf74acef32183266c4 (diff) | |
download | gdb-c820c52a914cc9d7c63cb41ad396f4ddffff2196.zip gdb-c820c52a914cc9d7c63cb41ad396f4ddffff2196.tar.gz gdb-c820c52a914cc9d7c63cb41ad396f4ddffff2196.tar.bz2 |
* thread.c (add_thread_silent): Use null_ptid instead of
minus_one_ptid while getting rid of stale inferior_ptid.
Diffstat (limited to 'gdb/thread.c')
-rw-r--r-- | gdb/thread.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/thread.c b/gdb/thread.c index 2fdc7f9..0b291ba 100644 --- a/gdb/thread.c +++ b/gdb/thread.c @@ -187,11 +187,11 @@ add_thread_silent (ptid_t ptid) if (ptid_equal (inferior_ptid, ptid)) { - tp = new_thread (ptid); + tp = new_thread (null_ptid); /* Make switch_to_thread not read from the thread. */ tp->state_ = THREAD_EXITED; - switch_to_thread (minus_one_ptid); + switch_to_thread (null_ptid); /* Now we can delete it. */ delete_thread (ptid); |