From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 17565 invoked by alias); 17 Jul 2004 14:17:06 -0000 Mailing-List: contact gdb-patches-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sources.redhat.com Received: (qmail 17557 invoked from network); 17 Jul 2004 14:17:06 -0000 Received: from unknown (HELO mx1.redhat.com) (66.187.233.31) by sourceware.org with SMTP; 17 Jul 2004 14:17:06 -0000 Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.12.10/8.12.10) with ESMTP id i6HEH6e3013099 for ; Sat, 17 Jul 2004 10:17:06 -0400 Received: from localhost.redhat.com (porkchop.devel.redhat.com [172.16.58.2]) by int-mx1.corp.redhat.com (8.11.6/8.11.6) with ESMTP id i6HEH4a07553; Sat, 17 Jul 2004 10:17:04 -0400 Received: from gnu.org (localhost [127.0.0.1]) by localhost.redhat.com (Postfix) with ESMTP id 4C52C2B9D; Sat, 17 Jul 2004 10:17:02 -0400 (EDT) Message-ID: <40F934DE.30803@gnu.org> Date: Sat, 17 Jul 2004 14:17:00 -0000 From: Andrew Cagney User-Agent: Mozilla/5.0 (X11; U; NetBSD macppc; en-GB; rv:1.4.1) Gecko/20040217 MIME-Version: 1.0 To: gdb-patches@sources.redhat.com Subject: [obish/6.2] GNU/Linux usage Content-Type: multipart/mixed; boundary="------------060906070203020302050207" X-SW-Source: 2004-07/txt/msg00221.txt.bz2 This is a multi-part message in MIME format. --------------060906070203020302050207 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Content-length: 43 FYI, I've committed the attached. Andrew --------------060906070203020302050207 Content-Type: text/plain; name="diffs" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="diffs" Content-length: 4333 2004-07-17 Andrew Cagney * ppc-linux-tdep.c (ppc_linux_init_abi): Add [sic] to Linux. * ppc-linux-nat.c: Use "Linux kernel". * hppa-linux-tdep.c: Use GNU/Linux. * hppa-linux-nat.c: Use GNU/Linux. * dwarfread.c: Add [sic] to use of Linux. Index: dwarfread.c =================================================================== RCS file: /cvs/src/src/gdb/dwarfread.c,v retrieving revision 1.40 diff -p -u -r1.40 dwarfread.c --- dwarfread.c 24 Jun 2004 20:42:42 -0000 1.40 +++ dwarfread.c 17 Jul 2004 14:14:35 -0000 @@ -84,7 +84,7 @@ On 2003-06-09 the gdb list received a report from a user with Absoft ProFortran f77 which is dwarf-1. - Absoft ProFortran Linux Fortran User Guide (no version, + Absoft ProFortran Linux[sic] Fortran User Guide (no version, but copyright dates are 1991-2001) says that Absoft ProFortran supports -gdwarf1 and -gdwarf2. Index: hppa-linux-nat.c =================================================================== RCS file: /cvs/src/src/gdb/hppa-linux-nat.c,v retrieving revision 1.5 diff -p -u -r1.5 hppa-linux-nat.c --- hppa-linux-nat.c 17 Jul 2004 13:58:56 -0000 1.5 +++ hppa-linux-nat.c 17 Jul 2004 14:14:35 -0000 @@ -1,4 +1,5 @@ -/* Functions specific to running gdb native on HPPA running Linux. +/* Functions specific to running GDB native on HPPA running GNU/Linux. + Copyright 2004 Free Software Foundation, Inc. This file is part of GDB. Index: hppa-linux-tdep.c =================================================================== RCS file: /cvs/src/src/gdb/hppa-linux-tdep.c,v retrieving revision 1.8 diff -p -u -r1.8 hppa-linux-tdep.c --- hppa-linux-tdep.c 7 Jun 2004 02:17:29 -0000 1.8 +++ hppa-linux-tdep.c 17 Jul 2004 14:14:35 -0000 @@ -1,4 +1,4 @@ -/* Target-dependent code for Linux running on PA-RISC, for GDB. +/* Target-dependent code for GNU/Linux running on PA-RISC, for GDB. Copyright 2004 Free Software Foundation, Inc. @@ -550,7 +550,7 @@ hppa_linux_init_abi (struct gdbarch_info { struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch); - /* Linux is always ELF. */ + /* GNU/Linux is always ELF. */ tdep->is_elf = 1; tdep->find_global_pointer = hppa_linux_find_global_pointer; Index: ppc-linux-nat.c =================================================================== RCS file: /cvs/src/src/gdb/ppc-linux-nat.c,v retrieving revision 1.45 diff -p -u -r1.45 ppc-linux-nat.c --- ppc-linux-nat.c 7 Jun 2004 23:37:20 -0000 1.45 +++ ppc-linux-nat.c 17 Jul 2004 14:14:37 -0000 @@ -114,8 +114,8 @@ typedef char gdb_vrregset_t[SIZEOF_VRREG /* On PPC processors that support the the Signal Processing Extension (SPE) APU, the general-purpose registers are 64 bits long. - However, the ordinary Linux PTRACE_PEEKUSR / PTRACE_POKEUSR / - PT_READ_U / PT_WRITE_U ptrace calls only access the lower half of + However, the ordinary Linux kernel PTRACE_PEEKUSR / PTRACE_POKEUSR + / PT_READ_U / PT_WRITE_U ptrace calls only access the lower half of each register, to allow them to behave the same way they do on non-SPE systems. There's a separate pair of calls, PTRACE_GETEVRREGS / PTRACE_SETEVRREGS, that read and write the top Index: ppc-linux-tdep.c =================================================================== RCS file: /cvs/src/src/gdb/ppc-linux-tdep.c,v retrieving revision 1.63 diff -p -u -r1.63 ppc-linux-tdep.c --- ppc-linux-tdep.c 13 May 2004 19:36:05 -0000 1.63 +++ ppc-linux-tdep.c 17 Jul 2004 14:14:37 -0000 @@ -1,7 +1,7 @@ /* Target-dependent code for GDB, the GNU debugger. Copyright 1986, 1987, 1989, 1991, 1992, 1993, 1994, 1995, 1996, - 1997, 2000, 2001, 2002, 2003 Free Software Foundation, Inc. + 1997, 2000, 2001, 2002, 2003, 2004 Free Software Foundation, Inc. This file is part of GDB. @@ -1070,7 +1070,7 @@ ppc_linux_init_abi (struct gdbarch_info However, as one of the known warts of its ABI, PPC GNU/Linux uses eight-byte long doubles. GCC only recently got 128-bit long double support on PPC, so it may be changing soon. The - Linux Standards Base says that programs that use 'long + Linux[sic] Standards Base says that programs that use 'long double' on PPC GNU/Linux are non-conformant. */ set_gdbarch_long_double_bit (gdbarch, 8 * TARGET_CHAR_BIT); --------------060906070203020302050207--