diff options
author | Pedro Alves <palves@redhat.com> | 2020-01-12 00:40:02 +0000 |
---|---|---|
committer | Pedro Alves <palves@redhat.com> | 2020-01-12 00:40:02 +0000 |
commit | 4ec89149dd83efecea15300bf425c9988f4cd5c0 (patch) | |
tree | 6c1d29a7a212a00fa048f65e340c8d69133c3468 /gdb/bsd-kvm.c | |
parent | 57d87c09a33acdce280f4c9ae4f55b885a5cee99 (diff) | |
download | gdb-4ec89149dd83efecea15300bf425c9988f4cd5c0.zip gdb-4ec89149dd83efecea15300bf425c9988f4cd5c0.tar.gz gdb-4ec89149dd83efecea15300bf425c9988f4cd5c0.tar.bz2 |
Remove last traces of discard_all_inferiors
The multi-target patch should have removed all traces of
discard_all_inferiors, but somehow one use stayed behind along with
the definition of the function.
discard_all_inferiors is bad now because it blindly exits inferiors of
all target connections. It's best to remove it.
gdb/ChangeLog:
2020-01-12 Pedro Alves <palves@redhat.com>
* bsd-kvm.c (bsd_kvm_target::close): Call exit_inferior_silent
directly for the current inferior instead of
discard_all_inferiors.
(discard_all_inferiors): Delete.
Diffstat (limited to 'gdb/bsd-kvm.c')
-rw-r--r-- | gdb/bsd-kvm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/bsd-kvm.c b/gdb/bsd-kvm.c index f864ba8..b1b1fee 100644 --- a/gdb/bsd-kvm.c +++ b/gdb/bsd-kvm.c @@ -156,7 +156,7 @@ bsd_kvm_target::close () } inferior_ptid = null_ptid; - discard_all_inferiors (); + exit_inferior_silent (current_inferior ()); } static LONGEST |