From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from simark.ca by simark.ca with LMTP id 0EK2IlY7/WPi9j8AWB0awg (envelope-from ) for ; Mon, 27 Feb 2023 18:23:02 -0500 Received: by simark.ca (Postfix, from userid 112) id 898631E222; Mon, 27 Feb 2023 18:23:02 -0500 (EST) Authentication-Results: simark.ca; dkim=pass (1024-bit key; secure) header.d=sourceware.org header.i=@sourceware.org header.a=rsa-sha256 header.s=default header.b=OfkUQj11; dkim-atps=neutral X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on simark.ca X-Spam-Level: X-Spam-Status: No, score=-7.0 required=5.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,MAILING_LIST_MULTI,RCVD_IN_DNSWL_HI, RDNS_DYNAMIC,URIBL_BLOCKED autolearn=ham autolearn_force=no version=3.4.6 Received: from sourceware.org (ip-8-43-85-97.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 3CCA11E128 for ; Mon, 27 Feb 2023 18:23:02 -0500 (EST) Received: from server2.sourceware.org (localhost [IPv6:::1]) by sourceware.org (Postfix) with ESMTP id E56BD3857C43 for ; Mon, 27 Feb 2023 23:23:01 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org E56BD3857C43 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1677540181; bh=RH8AdUSTHNEs7/autGejUxtmPLdmXXk+iYTyukgaXhw=; h=Date:To:Cc:Subject:In-Reply-To:References:List-Id: List-Unsubscribe:List-Archive:List-Post:List-Help:List-Subscribe: From:Reply-To:From; b=OfkUQj1179wLfTvxeVK9gUVHkTsulLl30PkOeinJne4qgCf0UQNuCfkB/CjCXT4Vw 0W7DlXM/wYv7T0jpwGUzuUurDWDUXdlHGTPsX+YORy+e+fF1JJTLKAnf71HzHWkrq1 Hdh4AGZtnGs6kjjZvwzkue2LIhKtHaGlKFPrf6gw= Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.133.124]) by sourceware.org (Postfix) with ESMTPS id B6864385703F for ; Mon, 27 Feb 2023 23:22:41 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org B6864385703F Received: from mimecast-mx02.redhat.com (mimecast-mx02.redhat.com [66.187.233.88]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id us-mta-518-vOcYt_MEPOKXprFuISQicA-1; Mon, 27 Feb 2023 18:22:38 -0500 X-MC-Unique: vOcYt_MEPOKXprFuISQicA-1 Received: from smtp.corp.redhat.com (int-mx10.intmail.prod.int.rdu2.redhat.com [10.11.54.10]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx02.redhat.com (Postfix) with ESMTPS id BAA5085A5A3; Mon, 27 Feb 2023 23:22:37 +0000 (UTC) Received: from f37-zws-nv (unknown [10.2.16.20]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 77D7F492B13; Mon, 27 Feb 2023 23:22:37 +0000 (UTC) Date: Mon, 27 Feb 2023 16:22:35 -0700 To: Pedro Alves Cc: gdb-patches@sourceware.org Subject: Re: [PATCH v5 0/8] Fix gdb.base/gdb-sigterm.exp failure/error Message-ID: <20230227162235.5437b0f7@f37-zws-nv> In-Reply-To: <44a9cd21-b40e-30d8-b9b2-4502e1905526@palves.net> References: <20230222234613.29662-1-kevinb@redhat.com> <44a9cd21-b40e-30d8-b9b2-4502e1905526@palves.net> Organization: Red Hat MIME-Version: 1.0 X-Scanned-By: MIMEDefang 3.1 on 10.11.54.10 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit 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" On Thu, 23 Feb 2023 13:01:07 +0000 Pedro Alves wrote: > > Kevin Buettner (8): > > Introduce gdb_exception_forced_quit > > Handle gdb SIGTERM by throwing / catching gdb_exception_force_quit > > Catch gdb_exception_error instead of gdb_exception (in many places) > > Python QUIT processing updates > > Guile QUIT processing updates > > QUIT processing w/ explicit throw for gdb_exception_forced_quit > > Introduce set_force_quit_flag and change type of sync_quit_force_run > > Forced quit cases handled by resetting sync_quit_force_run > > For the whole series: > > Approved-By: Pedro Alves I've pushed this series. Thanks for all of the reviews! Kevin