From patchwork Fri Nov 20 07:29:43 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Maciej W. Rozycki" X-Patchwork-Id: 9751 Received: (qmail 31982 invoked by alias); 20 Nov 2015 07:29:49 -0000 Mailing-List: contact libc-alpha-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: libc-alpha-owner@sourceware.org Delivered-To: mailing list libc-alpha@sourceware.org Received: (qmail 31971 invoked by uid 89); 20 Nov 2015 07:29:48 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.6 required=5.0 tests=AWL, BAYES_00, RCVD_IN_DNSWL_LOW, RP_MATCHES_RCVD, SPF_PASS autolearn=ham version=3.3.2 X-HELO: mailapp01.imgtec.com Date: Fri, 20 Nov 2015 07:29:43 +0000 From: "Maciej W. Rozycki" To: CC: Matthew Fortune , Daniel Sanders , Leonid Yegoshin Subject: [RFC PATCH 1/5] MIPS: linkmap.h: Reformat, add copyright notice In-Reply-To: Message-ID: References: User-Agent: Alpine 2.00 (DEB 1167 2008-08-23) MIME-Version: 1.0 * sysdeps/mips/linkmap.h: Add copyright notice. (link_map_machine): Reformat. --- glibc-mips-linkmap-fix.diff Index: glibc/sysdeps/mips/linkmap.h =================================================================== --- glibc.orig/sysdeps/mips/linkmap.h 2015-07-10 13:27:15.000000000 +0100 +++ glibc/sysdeps/mips/linkmap.h 2015-07-10 13:32:17.328030641 +0100 @@ -1,6 +1,24 @@ +/* Machine-specific link map part. MIPS version. + Copyright (C) 2014-2015 Free Software Foundation, Inc. + This file is part of the GNU C Library. + + The GNU C Library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. + + The GNU C Library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with the GNU C Library. If not, see + . */ + struct link_map_machine { - ElfW(Addr) plt; /* Address of .plt */ - ElfW(Word) fpabi; /* FP ABI of the object */ - unsigned int odd_spreg; /* Does the object require odd_spreg support? */ + ElfW (Addr) plt; /* Address of .plt. */ + ElfW (Word) fpabi; /* FP ABI of the object. */ + unsigned int odd_spreg; /* Odd single-precision registers used? */ };