summaryrefslogtreecommitdiff
path: root/gdb/aix-thread.c
diff options
context:
space:
mode:
authorPedro Alves <palves@redhat.com>2020-06-18 21:28:36 +0100
committerPedro Alves <palves@redhat.com>2020-06-18 23:18:08 +0100
commit6dbdab44e57d21c895ef60246d0e7aadb3c076a4 (patch)
tree371585b84b8d1ed8ff6aa7d08b0fe6d9a51da5ef /gdb/aix-thread.c
parent2da4b788f7a80ed9589d0e8856584e9dfa2813ff (diff)
downloadbinutils-gdb-6dbdab44e57d21c895ef60246d0e7aadb3c076a4.tar.gz
Don't write to inferior_ptid in aix-thread.c
There are other writes in the file, but they seem more harmless. This one is changing the current thread permanently. gdb/ChangeLog: 2020-06-18 Pedro Alves <palves@redhat.com> * aix-thread.c (pd_update): Use switch_to_thread.
Diffstat (limited to 'gdb/aix-thread.c')
-rw-r--r--gdb/aix-thread.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/aix-thread.c b/gdb/aix-thread.c
index f2bd05fef22..3963a08c840 100644
--- a/gdb/aix-thread.c
+++ b/gdb/aix-thread.c
@@ -902,7 +902,7 @@ pd_update (int set_infpid)
{
ptid = thread->ptid;
if (set_infpid)
- inferior_ptid = ptid;
+ switch_to_thread (thread);
}
return ptid;
}