From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.133.124]) by sourceware.org (Postfix) with ESMTP id 7EBA03847832 for ; Fri, 11 Jun 2021 22:21:07 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 7EBA03847832 Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com [209.132.183.4]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-588-0BcugpzjPE2OlUEqYy3aSA-1; Fri, 11 Jun 2021 18:21:06 -0400 X-MC-Unique: 0BcugpzjPE2OlUEqYy3aSA-1 Received: from smtp.corp.redhat.com (int-mx05.intmail.prod.int.phx2.redhat.com [10.5.11.15]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id 514B2800C60; Fri, 11 Jun 2021 22:21:05 +0000 (UTC) Received: from f33-m1.lan (ovpn-113-207.phx2.redhat.com [10.3.113.207]) by smtp.corp.redhat.com (Postfix) with ESMTPS id F3E7E5D6AC; Fri, 11 Jun 2021 22:21:01 +0000 (UTC) Date: Fri, 11 Jun 2021 15:21:00 -0700 From: Kevin Buettner To: gdb-patches@sourceware.org Cc: Carlos O'Donell , Simon Marchi Subject: Re: [PATCH 0/4] libthread_db initialization changes related to upcoming glibc-2.34 Message-ID: <20210611152100.210e3399@f33-m1.lan> In-Reply-To: <20210610172641.1052704-1-kevinb@redhat.com> References: <20210610172641.1052704-1-kevinb@redhat.com> Organization: Red Hat MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.15 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Spam-Status: No, score=-6.3 required=5.0 tests=BAYES_00, DKIMWL_WL_HIGH, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, KAM_NUMSUBJECT, RCVD_IN_DNSWL_LOW, RCVD_IN_MSPIKE_H4, RCVD_IN_MSPIKE_WL, SPF_HELO_NONE, SPF_PASS, TXREP autolearn=ham autolearn_force=no version=3.4.2 X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on server2.sourceware.org X-BeenThere: gdb-patches@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gdb-patches mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 11 Jun 2021 22:21:08 -0000 After making changes requested by Simon, I've pushed this series. Thanks to both Carlos and Simon for the quick reviews. Kevin On Thu, 10 Jun 2021 10:26:37 -0700 Kevin Buettner wrote: > This patch series contains changes necessary for GDB to be able to > debug threaded programs using glibc-2.34. > > The actual change to GDB sources are contained in the first patch; the > remainder deal with several testing issues that I ran into. > > Kevin Buettner (4): > libthread_db initialization changes related to upcoming glibc-2.34 > testsuite/glib-2.34: Match/consume optional libthread_db related > output > print-symbol-loading.exp: Allow libc symbols to be already loaded > mi-sym-info.exp: Increase timeout for 114-symbol-info-functions > > gdb/linux-thread-db.c | 24 +++++++- > gdb/solib.c | 10 +++- > .../gdb.base/execl-update-breakpoints.exp | 1 + > .../gdb.base/fork-print-inferior-events.exp | 3 +- > .../gdb.base/print-symbol-loading.exp | 15 ++++- > gdb/testsuite/gdb.mi/mi-sym-info.exp | 56 ++++++++++--------- > 6 files changed, 73 insertions(+), 36 deletions(-) > > -- > 2.31.1 >