From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from simark.ca by simark.ca with LMTP id iLR2FT3bll+yHwAAWB0awg (envelope-from ) for ; Mon, 26 Oct 2020 10:20:45 -0400 Received: by simark.ca (Postfix, from userid 112) id 558D11F08D; Mon, 26 Oct 2020 10:20:45 -0400 (EDT) X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on simark.ca X-Spam-Level: X-Spam-Status: No, score=0.4 required=5.0 tests=DKIM_SIGNED,MAILING_LIST_MULTI, RCVD_IN_BL_SPAMCOP_NET,T_DKIM_INVALID,URIBL_BLOCKED autolearn=no 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 C77051E552 for ; Mon, 26 Oct 2020 10:20:44 -0400 (EDT) Received: from server2.sourceware.org (localhost [IPv6:::1]) by sourceware.org (Postfix) with ESMTP id 6F5F5388EC35; Mon, 26 Oct 2020 14:20:44 +0000 (GMT) Received: from gateway36.websitewelcome.com (gateway36.websitewelcome.com [192.185.188.18]) by sourceware.org (Postfix) with ESMTPS id EDC023937421 for ; Mon, 26 Oct 2020 14:20:41 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org EDC023937421 Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=tromey.com Authentication-Results: sourceware.org; spf=fail smtp.mailfrom=tom@tromey.com Received: from cm11.websitewelcome.com (cm11.websitewelcome.com [100.42.49.5]) by gateway36.websitewelcome.com (Postfix) with ESMTP id 140FA40DE8C4D for ; Mon, 26 Oct 2020 09:20:41 -0500 (CDT) Received: from box5379.bluehost.com ([162.241.216.53]) by cmsmtp with SMTP id X3MXkeJ7dOIGpX3MXki0kE; Mon, 26 Oct 2020 09:20:41 -0500 X-Authority-Reason: nr=8 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=tromey.com; s=default; h=Content-Type:MIME-Version:Message-ID:In-Reply-To:Date: References:Subject:Cc:To:From:Sender:Reply-To:Content-Transfer-Encoding: Content-ID:Content-Description:Resent-Date:Resent-From:Resent-Sender: Resent-To:Resent-Cc:Resent-Message-ID:List-Id:List-Help:List-Unsubscribe: List-Subscribe:List-Post:List-Owner:List-Archive; bh=Pkq93bC1X+U0JMIsO7RZJdNfmV54xH5xSBYk1f5XlPQ=; b=j5cEgH2XxWaAVc4u7RUy5X40VV vSe7dwjCr9zeQa5KQP76PRzn0DW/83yedj+22EkKwZZUJFZ1srPTbG0yYb7taDNDbMzq9AHED0jy2 ppufv8ULbC1T4GeDPOFUUGw9P; Received: from 174-16-123-164.hlrn.qwest.net ([174.16.123.164]:39384 helo=murgatroyd) by box5379.bluehost.com with esmtpsa (TLS1.2) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.93) (envelope-from ) id 1kX3MW-001ePG-N4; Mon, 26 Oct 2020 08:20:40 -0600 From: Tom Tromey To: Pedro Alves Subject: Re: [PATCH v2] gdb::handle_eintr, remove need to specify return type References: <20200904002905.13616-1-n54@gmx.com> <20200904002905.13616-2-n54@gmx.com> <75070000-03a2-eeed-4f72-e29f199291af@palves.net> <223cf7ec-36b5-fe52-7d0f-e19c335be534@palves.net> <87a6wlopxd.fsf@tromey.com> X-Attribution: Tom Date: Mon, 26 Oct 2020 08:20:40 -0600 In-Reply-To: (Pedro Alves's message of "Mon, 26 Oct 2020 14:00:34 +0000") Message-ID: <87r1plysp3.fsf@tromey.com> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.1.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - box5379.bluehost.com X-AntiAbuse: Original Domain - sourceware.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - tromey.com X-BWhitelist: no X-Source-IP: 174.16.123.164 X-Source-L: No X-Exim-ID: 1kX3MW-001ePG-N4 X-Source: X-Source-Args: X-Source-Dir: X-Source-Sender: 174-16-123-164.hlrn.qwest.net (murgatroyd) [174.16.123.164]:39384 X-Source-Auth: tom+tromey.com X-Email-Count: 4 X-Source-Cap: ZWx5bnJvYmk7ZWx5bnJvYmk7Ym94NTM3OS5ibHVlaG9zdC5jb20= X-Local-Domain: yes 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: , Cc: Simon Marchi , Kamil Rytarowski , Tom Tromey , gdb-patches@sourceware.org Errors-To: gdb-patches-bounces@sourceware.org Sender: "Gdb-patches" >>>>> "Pedro" == Pedro Alves writes: Pedro> That works for me too, though it looks a little more complicated, Pedro> I think. Pedro> Let me know which version you prefer. I don't have much preference but I suppose simpler is better. Tom