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.129.124]) by sourceware.org (Postfix) with ESMTP id A5F563858408 for ; Mon, 27 Sep 2021 17:20:17 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org A5F563858408 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-51-LTWRQqUoPFm3kavNVZNt7A-1; Mon, 27 Sep 2021 13:20:15 -0400 X-MC-Unique: LTWRQqUoPFm3kavNVZNt7A-1 Received: from smtp.corp.redhat.com (int-mx06.intmail.prod.int.phx2.redhat.com [10.5.11.16]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id 946A31006AA4; Mon, 27 Sep 2021 17:20:14 +0000 (UTC) Received: from f33-m1.lan (ovpn-112-47.phx2.redhat.com [10.3.112.47]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 517045C1BB; Mon, 27 Sep 2021 17:20:14 +0000 (UTC) Date: Mon, 27 Sep 2021 10:20:12 -0700 From: Kevin Buettner To: gdb-patches@sourceware.org Subject: Re: [PATCH v2 0/6] glibc-2.34: Fix gdb.base/gdb-sigterm.exp failure/error Message-ID: <20210927102012.558a83cd@f33-m1.lan> In-Reply-To: <20210822231959.184061-1-kevinb@redhat.com> References: <20210822231959.184061-1-kevinb@redhat.com> Organization: Red Hat MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.16 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.4 required=5.0 tests=BAYES_00, DKIMWL_WL_HIGH, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, RCVD_IN_DNSWL_LOW, SPF_HELO_NONE, SPF_NONE, TXREP autolearn=ham autolearn_force=no version=3.4.4 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) 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: Mon, 27 Sep 2021 17:20:18 -0000 Ping. On Sun, 22 Aug 2021 16:19:54 -0700 Kevin Buettner wrote: > The first patch in this series is the same as in v1. Everything else > is new, though the problem, a regression in gdb.base/gdb-sigterm.exp > when run on a machine w/ glibc-2.34, being solved remains the same. > > Kevin Buettner (6): > Handle recursive internal problem in gdb_internal_error_resync > Handle gdb SIGTERM via normal QUIT processing > Catch and (re)throw gdb_exception_quit > Python QUIT processing updates > Guile QUIT processing updates > QUIT processing w/ explicit sync_quit_force_run check > > gdb/ada-lang.c | 4 ++++ > gdb/breakpoint.c | 15 +++++++++++++++ > gdb/exceptions.c | 6 ++++++ > gdb/guile/scm-exception.c | 4 ++++ > gdb/guile/scm-pretty-print.c | 4 ++++ > gdb/guile/scm-type.c | 4 ++++ > gdb/guile/scm-value.c | 4 ++++ > gdb/i386-linux-tdep.c | 4 ++++ > gdb/infrun.c | 4 ++++ > gdb/jit.c | 4 ++++ > gdb/mi/mi-main.c | 4 ++++ > gdb/objc-lang.c | 4 ++++ > gdb/parse.c | 4 ++++ > gdb/printcmd.c | 4 ++++ > gdb/python/py-finishbreakpoint.c | 6 ++++-- > gdb/python/py-gdb-readline.c | 12 ++++++++---- > gdb/python/py-symbol.c | 4 ++++ > gdb/python/py-utils.c | 4 +++- > gdb/python/py-value.c | 4 ++++ > gdb/record-btrace.c | 4 ++++ > gdb/remote-fileio.c | 8 +++++++- > gdb/solib.c | 4 ++++ > gdb/sparc64-linux-tdep.c | 4 ++++ > gdb/testsuite/lib/gdb.exp | 4 ++++ > gdb/utils.c | 5 +---- > 25 files changed, 116 insertions(+), 12 deletions(-) > > -- > 2.31.1 >