Community source repository for glibc add-on ports branch release/2.15/master updated. glibc-2.15-21-g7d369e1
cmetcalf@sourceware.org
cmetcalf@sourceware.org
Thu Sep 6 20:50:00 GMT 2012
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.15/master has been updated
via 7d369e108eb2923833079a2a8dac7f752be4e716 (commit)
from c81034b65c6861de43813bbbf4c413cbeeab16fe (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=7d369e108eb2923833079a2a8dac7f752be4e716
commit 7d369e108eb2923833079a2a8dac7f752be4e716
Author: Chris Metcalf <cmetcalf@tilera.com>
Date: Thu Sep 6 16:48: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 b99ba07..31f686b 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-17 Chris Metcalf <cmetcalf@tilera.com>
* sysdeps/tile/fegetenv.c: Version fegetenv() like fesetenv().
diff --git a/sysdeps/unix/sysv/linux/tile/sys/procfs.h b/sysdeps/unix/sysv/linux/tile/sys/procfs.h
index 585a223..36a4c81 100644
--- a/sysdeps/unix/sysv/linux/tile/sys/procfs.h
+++ b/sysdeps/unix/sysv/linux/tile/sys/procfs.h
@@ -114,7 +114,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
More information about the Glibc-cvs
mailing list