This is the mail archive of the glibc-cvs@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Community source repository for glibc add-on ports branch release/2.16/master updated. glibc-2.16.0-1-g0631954


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Community source repository for glibc add-on ports".

The branch, release/2.16/master has been updated
       via  063195465dc0572cbccf527f57cdd21b5409a756 (commit)
      from  a20c2b3c87aebc7d4b090c622d36480263b80042 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://sources.redhat.com/git/gitweb.cgi?p=glibc-ports.git;a=commitdiff;h=063195465dc0572cbccf527f57cdd21b5409a756

commit 063195465dc0572cbccf527f57cdd21b5409a756
Author: Chris Metcalf <cmetcalf@tilera.com>
Date:   Thu Sep 6 16:53:28 2012 -0400

    tile: fix type of prfpregset_t in <sys/procfs.h>
    
    The previous dummy definition (as type int) was fine in general, since
    tile doesn't have floating-point registers, but it confused gdb's
    configure, leading to later compile errors.  This change also makes
    prfpregset_t parallel to prgregset_t, which seems like generally the
    right thing regardless of the non-existence of the actual registers :-)
    
    (cherry picked from glibc commit 48bac3debbc7acd0a2e8fe8248780f9d2c043c10)

diff --git a/ChangeLog.tile b/ChangeLog.tile
index ce8c3e0..cc4ab0e 100644
--- a/ChangeLog.tile
+++ b/ChangeLog.tile
@@ -1,3 +1,7 @@
+2012-09-06  Chris Metcalf  <cmetcalf@tilera.com>
+
+	* sysdeps/unix/sysv/linux/tile/sys/procfs.h: Fix type of prfpregset_t.
+
 2012-05-30  Chris Metcalf  <cmetcalf@tilera.com>
 
 	* sysdeps/unix/sysv/linux/tile/tilegx/Makefile: Remove test
diff --git a/sysdeps/unix/sysv/linux/tile/sys/procfs.h b/sysdeps/unix/sysv/linux/tile/sys/procfs.h
index 295ae50..f533eb1 100644
--- a/sysdeps/unix/sysv/linux/tile/sys/procfs.h
+++ b/sysdeps/unix/sysv/linux/tile/sys/procfs.h
@@ -113,7 +113,7 @@ typedef void *psaddr_t;
 typedef elf_gregset_t prgregset_t;
 
 /* Provide dummy declaration here; we don't have FP registers. */
-typedef int prfpregset_t;
+typedef elf_fpregset_t prfpregset_t;
 
 /* We don't have any differences between processes and threads,
    therefore have only one PID type.  */

-----------------------------------------------------------------------

Summary of changes:
 ChangeLog.tile                            |    4 ++++
 sysdeps/unix/sysv/linux/tile/sys/procfs.h |    2 +-
 2 files changed, 5 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
Community source repository for glibc add-on ports


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]