From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from simark.ca by simark.ca with LMTP id YsZiOE/cImEkGwAAWB0awg (envelope-from ) for ; Sun, 22 Aug 2021 19:22:55 -0400 Received: by simark.ca (Postfix, from userid 112) id D7AA11EE18; Sun, 22 Aug 2021 19:22:55 -0400 (EDT) X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on simark.ca X-Spam-Level: X-Spam-Status: No, score=-1.1 required=5.0 tests=DKIM_SIGNED,DKIM_VALID, DKIM_VALID_AU,MAILING_LIST_MULTI,URIBL_BLOCKED autolearn=ham autolearn_force=no version=3.4.2 Received: from sourceware.org (server2.sourceware.org [8.43.85.97]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by simark.ca (Postfix) with ESMTPS id E7FA41E813 for ; Sun, 22 Aug 2021 19:22:54 -0400 (EDT) Received: from server2.sourceware.org (localhost [IPv6:::1]) by sourceware.org (Postfix) with ESMTP id 0D6AB3857430 for ; Sun, 22 Aug 2021 23:22:54 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 0D6AB3857430 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1629674574; bh=7XmgRaLhFRHXwbnLa4vvZnJcE2idUQKbx414jCGtgTE=; h=To:Subject:Date:List-Id:List-Unsubscribe:List-Archive:List-Post: List-Help:List-Subscribe:From:Reply-To:From; b=e017numrVcbZO5bBrSG+TDaRlGq8YyEtTJQbx7Y5lBu1A0DkmxJaZCyJhmIYtB4vS kZafPScf20j5N/2CF4XdnqeIi4yWjSifTH3DwaSy9Y3jfeCGEL3AZDknGdfseThF8Z 5IekN6ueUjRZSOJl/GyjT2qtk6J2G7g2yQpvVOJs= 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 3ECBD3858433 for ; Sun, 22 Aug 2021 23:22:35 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 3ECBD3858433 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-422-7NOFeJ4wNzyEJcMxI-TH1g-1; Sun, 22 Aug 2021 19:22:32 -0400 X-MC-Unique: 7NOFeJ4wNzyEJcMxI-TH1g-1 Received: from smtp.corp.redhat.com (int-mx07.intmail.prod.int.phx2.redhat.com [10.5.11.22]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id 834FA1082922; Sun, 22 Aug 2021 23:22:31 +0000 (UTC) Received: from f34-1.lan (ovpn-112-47.phx2.redhat.com [10.3.112.47]) by smtp.corp.redhat.com (Postfix) with ESMTP id 45FDB10013C1; Sun, 22 Aug 2021 23:22:31 +0000 (UTC) To: gdb-patches@sourceware.org Subject: [PATCH v2 0/6] glibc-2.34: Fix gdb.base/gdb-sigterm.exp failure/error Date: Sun, 22 Aug 2021 16:19:54 -0700 Message-Id: <20210822231959.184061-1-kevinb@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.84 on 10.5.11.22 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" 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: , From: Kevin Buettner via Gdb-patches Reply-To: Kevin Buettner Errors-To: gdb-patches-bounces+public-inbox=simark.ca@sourceware.org Sender: "Gdb-patches" 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