From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from simark.ca by simark.ca with LMTP id cFkRJWFUK2Pz3D0AWB0awg (envelope-from ) for ; Wed, 21 Sep 2022 14:13:53 -0400 Received: by simark.ca (Postfix, from userid 112) id 95B2C1E112; Wed, 21 Sep 2022 14:13:53 -0400 (EDT) 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=uPyU1zqz; 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=-4.0 required=5.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,MAILING_LIST_MULTI,NICE_REPLY_A,URIBL_BLOCKED autolearn=ham autolearn_force=no version=3.4.6 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 01DBD1E0D5 for ; Wed, 21 Sep 2022 14:13:53 -0400 (EDT) Received: from server2.sourceware.org (localhost [IPv6:::1]) by sourceware.org (Postfix) with ESMTP id 6519D3858C00 for ; Wed, 21 Sep 2022 18:13:52 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 6519D3858C00 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1663784032; bh=ThJErR9vBqNEwry6yyjuCeko0VwSZn52OSr9jlPVYaQ=; h=Date:Subject:To:References:In-Reply-To:List-Id:List-Unsubscribe: List-Archive:List-Post:List-Help:List-Subscribe:From:Reply-To:Cc: From; b=uPyU1zqzQi+8gjk6Vw7kr+dRFSDFtVFfb2KnMYi+odCL29MoJ8gVvtx4XUUS6WZeC CA6mRR39Kimj4RMbNBcZW0XsrvSEK2bx70NFvXhcOYiWGqLQZaF3aUKNdId26CpqEp 3e00CWvtkau1ybMYGfLZE08vwEru/nYg+J54FPLQ= Received: from simark.ca (simark.ca [158.69.221.121]) by sourceware.org (Postfix) with ESMTPS id 22A5A3858CDB for ; Wed, 21 Sep 2022 18:13:33 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 22A5A3858CDB Received: from [10.0.0.11] (unknown [217.28.27.60]) (using TLSv1.3 with cipher TLS_AES_128_GCM_SHA256 (128/128 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by simark.ca (Postfix) with ESMTPSA id 6B7391E0D5; Wed, 21 Sep 2022 14:13:32 -0400 (EDT) Message-ID: <623a8aa1-e617-12f4-3fc3-70924eca1cde@simark.ca> Date: Wed, 21 Sep 2022 14:13:32 -0400 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:102.0) Gecko/20100101 Thunderbird/102.2.2 Subject: Re: [PATCH v2 1/3] gdbsupport: move include/gdb/fileio.h contents to fileio.h Content-Language: en-US To: Simon Marchi , gdb-patches@sourceware.org References: <20220826195459.2540898-1-simon.marchi@efficios.com> <20220829162926.3752040-1-simon.marchi@polymtl.ca> <20220829162926.3752040-2-simon.marchi@polymtl.ca> In-Reply-To: <20220829162926.3752040-2-simon.marchi@polymtl.ca> Content-Type: text/plain; charset=UTF-8 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: Simon Marchi via Gdb-patches Reply-To: Simon Marchi Cc: Simon Marchi Errors-To: gdb-patches-bounces+public-inbox=simark.ca@sourceware.org Sender: "Gdb-patches" On 2022-08-29 12:29, Simon Marchi via Gdb-patches wrote: > From: Simon Marchi > > I don't see why include/gdb/fileio.h is placed there. It's not > installed by "make install", and it's not included by anything outside > of gdb/gdbserver/gdbsupport. > > Move its content back to gdbsupport/fileio.h. I have omitted the bits > inside an `#if 0`, since it's obviously not used, as well as the > "limits" constants, which are also unused. > > Change-Id: I6fbc2ea10fbe4cfcf15f9f76006b31b99c20e5a9 I pushed this series. Simon