From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from hera.aquilenet.fr (hera.aquilenet.fr [185.233.100.1]) by sourceware.org (Postfix) with ESMTPS id BE839385DC35 for ; Sat, 30 May 2020 20:28:11 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org BE839385DC35 Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=gnu.org Authentication-Results: sourceware.org; spf=fail smtp.mailfrom=samuel.thibault@gnu.org Received: from localhost (localhost [127.0.0.1]) by hera.aquilenet.fr (Postfix) with ESMTP id 529195F82; Sat, 30 May 2020 22:28:10 +0200 (CEST) X-Virus-Scanned: Debian amavisd-new at aquilenet.fr Received: from hera.aquilenet.fr ([127.0.0.1]) by localhost (hera.aquilenet.fr [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 25wuVMRehjT9; Sat, 30 May 2020 22:28:09 +0200 (CEST) Received: from function (lfbn-bor-1-797-11.w86-234.abo.wanadoo.fr [86.234.239.11]) by hera.aquilenet.fr (Postfix) with ESMTPSA id 2DC9B37A9; Sat, 30 May 2020 22:28:09 +0200 (CEST) Received: from samy by function with local (Exim 4.93) (envelope-from ) id 1jf85P-00AB6b-Vj; Sat, 30 May 2020 22:28:07 +0200 Date: Sat, 30 May 2020 22:28:07 +0200 From: Samuel Thibault To: Pedro Alves Cc: gdb-patches@sourceware.org, Simon Marchi , Thomas Schwinge , thomas@schwinge.name, bug-hurd@gnu.org Subject: Re: [PATCH] hurd: Add shared mig declarations Message-ID: <20200530202807.amiqned7zxnztl6h@function> Mail-Followup-To: Pedro Alves , gdb-patches@sourceware.org, Simon Marchi , Thomas Schwinge , thomas@schwinge.name, bug-hurd@gnu.org References: <20200530182318.hh3k7uuhvhfrqo5g@function> <7e0cf6ad-3540-7297-10b7-2c28b8d38816@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <7e0cf6ad-3540-7297-10b7-2c28b8d38816@redhat.com> Organization: I am not organized User-Agent: NeoMutt/20170609 (1.8.3) X-Spam-Status: No, score=-4.6 required=5.0 tests=BAYES_00, KAM_DMARC_STATUS, SPF_HELO_PASS, SPF_SOFTFAIL, TXREP autolearn=no autolearn_force=no version=3.4.2 X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on server2.sourceware.org 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: , X-List-Received-Date: Sat, 30 May 2020 20:28:13 -0000 Pedro Alves, le sam. 30 mai 2020 20:51:17 +0100, a ecrit: > On 5/30/20 7:23 PM, Samuel Thibault wrote: > > +++ binutils-gdb/gdb/gnu-nat-mig.h > > @@ -0,0 +1,33 @@ > > +/* Common things used by the various *gnu-nat.c files > > + Copyright (C) 2020 Free Software Foundation, Inc. > > + > > + Written by Samuel Thibault > > Please don't take this the wrong way, but a while ago the > GDB project (following Glibc's lead) decided that we would > not add more "contributed by", "written by", etc. notes. > > See here > and follow the link there for rationale. Ah, I had read that part, and thought it was talking about the commit log, I didn't notice it was talking about source files. Sure I'll just drop it, I was just following the content of the existing gnu-nat.c file. Samuel