From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from simark.ca by simark.ca with LMTP id 697aNLQopWFDRAAAWB0awg (envelope-from ) for ; Mon, 29 Nov 2021 14:23:32 -0500 Received: by simark.ca (Postfix, from userid 112) id D03971F0CE; Mon, 29 Nov 2021 14:23:32 -0500 (EST) X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on simark.ca X-Spam-Level: X-Spam-Status: No, score=-2.0 required=5.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,MAILING_LIST_MULTI,RDNS_DYNAMIC,URIBL_BLOCKED autolearn=ham autolearn_force=no version=3.4.2 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 57DD61EDF0 for ; Mon, 29 Nov 2021 14:23:32 -0500 (EST) Received: from server2.sourceware.org (localhost [IPv6:::1]) by sourceware.org (Postfix) with ESMTP id 84F8E385AC2D for ; Mon, 29 Nov 2021 19:23:31 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 84F8E385AC2D DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1638213811; bh=OzwQvGhLLPnI89y7N/pWOH3fqmsf64dbpf5U1v4yYzk=; h=Date:To:Subject:In-Reply-To:References:List-Id:List-Unsubscribe: List-Archive:List-Post:List-Help:List-Subscribe:From:Reply-To:Cc: From; b=XlXZ3wS49XHZm7ioDFZgUvoUIhYcZTKabuFiYvNXLVOZEUaKxpsX2ZY7jgSyTZi86 PQa6lkcYec4Lmhv139bPbVv5JZXyRXPWr0gPpTbL+GPJMiquksSOCBv2MJaBf6ULXE +6D3xALVST7SpJmEeW/jR+2bZIfs/MBCHple8h7Q= Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.129.124]) by sourceware.org (Postfix) with ESMTPS id 460EB3858409 for ; Mon, 29 Nov 2021 19:23:12 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 460EB3858409 Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com [209.132.183.4]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id us-mta-501-gs30PfKYO_OAFuWPftunng-1; Mon, 29 Nov 2021 14:23:10 -0500 X-MC-Unique: gs30PfKYO_OAFuWPftunng-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 B287EA0C0B; Mon, 29 Nov 2021 19:23:09 +0000 (UTC) Received: from f35-m3 (ovpn-112-22.phx2.redhat.com [10.3.112.22]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 7357410013D7; Mon, 29 Nov 2021 19:23:09 +0000 (UTC) Date: Mon, 29 Nov 2021 12:23:08 -0700 To: Aaron Merey via Gdb-patches Subject: Re: [PATCH] [PR gdb/27026] CTRL-C is ignored when debug info is downloaded Message-ID: <20211129122308.330c7063@f35-m3> In-Reply-To: <20211124014314.217675-1-amerey@redhat.com> References: <20211124014314.217675-1-amerey@redhat.com> Organization: Red Hat 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-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 Cc: Tom de Vries Errors-To: gdb-patches-bounces+public-inbox=simark.ca@sourceware.org Sender: "Gdb-patches" On Tue, 23 Nov 2021 20:43:14 -0500 Aaron Merey via Gdb-patches wrote: > During debuginfod downloads, ctrl-c should result in the download > being cancelled and skipped. However in some cases, ctrl-c fails to > get delivered to gdb during downloading. This can result in downloads > being unskippable. > > Fix this by ensuring that target_terminal::ours is in effect for the > duration of each download. Okay. (Make sure that you include email address adjustment requested by Tom.) Kevin