From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1551) id 61212383DBB0; Fri, 24 Jun 2022 16:23:50 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 61212383DBB0 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable From: Pedro Alves To: gdb-cvs@sourceware.org Subject: [binutils-gdb] Revert "Delete delete_thread_silent" X-Act-Checkin: binutils-gdb X-Git-Author: Pedro Alves X-Git-Refname: refs/heads/master X-Git-Oldrev: 10245fe8171a292dcf50051a33ec5bae7b08cb54 X-Git-Newrev: 86be3050a64c7317754b5682e1a2b6a91f4e3f03 Message-Id: <20220624162350.61212383DBB0@sourceware.org> Date: Fri, 24 Jun 2022 16:23:50 +0000 (GMT) X-BeenThere: gdb-cvs@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gdb-cvs mailing list List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 24 Jun 2022 16:23:50 -0000 https://sourceware.org/git/gitweb.cgi?p=3Dbinutils-gdb.git;h=3D86be3050a64c= 7317754b5682e1a2b6a91f4e3f03 commit 86be3050a64c7317754b5682e1a2b6a91f4e3f03 Author: Pedro Alves Date: Fri Jun 24 17:20:16 2022 +0100 Revert "Delete delete_thread_silent" =20 Turns out we'll be gaining a new use of this function very soon, the incoming AMDGPU port needs it. Let's add it back, as it isn't really hurting anything. =20 This reverts commit 39b8a8090ed7e8967ceca3655aa5f3a2ae91219d. Diff: --- gdb/gdbthread.h | 4 ++++ gdb/thread.c | 28 +++++++++++++++++++++++----- 2 files changed, 27 insertions(+), 5 deletions(-) diff --git a/gdb/gdbthread.h b/gdb/gdbthread.h index 1f17ad7d9e7..1a33eb61221 100644 --- a/gdb/gdbthread.h +++ b/gdb/gdbthread.h @@ -623,6 +623,10 @@ extern struct thread_info *add_thread_with_info (proce= ss_stratum_target *targ, as exited and do the notification. */ extern void delete_thread (struct thread_info *thread); =20 +/* Like delete_thread, but be quiet about it. Used when the process + this thread belonged to has already exited, for example. */ +extern void delete_thread_silent (struct thread_info *thread); + /* Mark the thread exited, but don't delete it or remove it from the inferior thread list. */ extern void set_thread_exited (thread_info *tp, bool silent); diff --git a/gdb/thread.c b/gdb/thread.c index f0ad82e76d7..378c5ee2d13 100644 --- a/gdb/thread.c +++ b/gdb/thread.c @@ -450,16 +450,20 @@ global_thread_step_over_chain_remove (struct thread_i= nfo *tp) global_thread_step_over_list.erase (it); } =20 -/* See gdbthread.h. */ +/* Delete the thread referenced by THR. If SILENT, don't notify + the observer of this exit. + =20 + THR must not be NULL or a failed assertion will be raised. */ =20 -void -delete_thread (thread_info *thr) +static void +delete_thread_1 (thread_info *thr, bool silent) { gdb_assert (thr !=3D nullptr); =20 - threads_debug_printf ("deleting thread %s", thr->ptid.to_string ().c_str= ()); + threads_debug_printf ("deleting thread %s, silent =3D %d", + thr->ptid.to_string ().c_str (), silent); =20 - set_thread_exited (thr, false); + set_thread_exited (thr, silent); =20 if (!thr->deletable ()) { @@ -473,6 +477,20 @@ delete_thread (thread_info *thr) delete thr; } =20 +/* See gdbthread.h. */ + +void +delete_thread (thread_info *thread) +{ + delete_thread_1 (thread, false /* not silent */); +} + +void +delete_thread_silent (thread_info *thread) +{ + delete_thread_1 (thread, true /* silent */); +} + struct thread_info * find_thread_global_id (int global_id) {