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, master, updated. glibc-2.13-5-ga8505de


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, master has been updated
       via  a8505de8a46aa0e70928c4e8d8a68d948436da4f (commit)
       via  79abd1fbfcd082e5e9857d41d0acb4f64e9299de (commit)
       via  65342356965f356a7fb9b4578856c5ad0861d423 (commit)
       via  146c8734c741e7f592cf07e7fd12644506c4c4c5 (commit)
      from  94fd527b67373373ebf6364d8b42c1d9fac1ea1c (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=a8505de8a46aa0e70928c4e8d8a68d948436da4f

commit a8505de8a46aa0e70928c4e8d8a68d948436da4f
Author: Aurelien Jarno <aurelien@aurel32.net>
Date:   Tue Mar 1 10:04:15 2011 +1000

    alpha: Add libm_hidden_def to feupdateenv and fetestexcept

diff --git a/sysdeps/alpha/fpu/feupdateenv.c b/sysdeps/alpha/fpu/feupdateenv.c
index c798070..7fc3816 100644
--- a/sysdeps/alpha/fpu/feupdateenv.c
+++ b/sysdeps/alpha/fpu/feupdateenv.c
@@ -46,4 +46,5 @@ strong_alias (__feupdateenv, __old_feupdateenv)
 compat_symbol (libm, __old_feupdateenv, feupdateenv, GLIBC_2_1);
 #endif
 
+libm_hidden_ver (__feupdateenv, feupdateenv)
 versioned_symbol (libm, __feupdateenv, feupdateenv, GLIBC_2_2);
diff --git a/sysdeps/alpha/fpu/ftestexcept.c b/sysdeps/alpha/fpu/ftestexcept.c
index a4b3081..34d8113 100644
--- a/sysdeps/alpha/fpu/ftestexcept.c
+++ b/sysdeps/alpha/fpu/ftestexcept.c
@@ -30,3 +30,4 @@ fetestexcept (int excepts)
 
   return tmp & excepts & SWCR_STATUS_MASK;
 }
+libm_hidden_def (fetestexcept)

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

commit 79abd1fbfcd082e5e9857d41d0acb4f64e9299de
Author: Aurelien Jarno <aurelien@aurel32.net>
Date:   Tue Mar 1 10:02:04 2011 +1000

    alpha: Add f_flags to struct statfs

diff --git a/ChangeLog.alpha b/ChangeLog.alpha
index 473edac..b841cc2 100644
--- a/ChangeLog.alpha
+++ b/ChangeLog.alpha
@@ -1,5 +1,10 @@
 2011-02-28  Aurelien Jarno  <aurelien@aurel32.net>
 
+	* sysdeps/unix/sysv/linux/alpha/bits/statfs.h (struct statfs,
+	struct statfs64): Add f_flags field.
+
+2011-02-28  Aurelien Jarno  <aurelien@aurel32.net>
+
 	* sysdeps/alpha/stackinfo.h: Define DEFAULT_STACK_PERMS with PF_X.
 
 2011-02-28  Aurelien Jarno  <aurelien@aurel32.net>
@@ -136,7 +141,7 @@
 	return type correct without warning.
 
 2010-03-23  Matt Turner  <mattst88@gmail.com>
-            Aurelien Jarno  <aurelien@aurel32.net>
+	    Aurelien Jarno  <aurelien@aurel32.net>
 
 	* sysdeps/unix/sysv/linux/alpha/bits/socket.h: New file.
 
@@ -193,8 +198,8 @@
 2009-07-13  Aurelien Jarno  <aurelien@aurel32.net>
 
 	[BZ #10158]
-        * sysdeps/unix/sysv/linux/alpha/getsysstats.c (GET_NPROCS_PARSER):
-        Change parameters and use next_line.
+	* sysdeps/unix/sysv/linux/alpha/getsysstats.c (GET_NPROCS_PARSER):
+	Change parameters and use next_line.
 
 	[BZ #10160]
 	* sysdeps/unix/sysv/linux/alpha/nptl/lowlevellock.h: Define
diff --git a/sysdeps/unix/sysv/linux/alpha/bits/statfs.h b/sysdeps/unix/sysv/linux/alpha/bits/statfs.h
index d838e6b..157591d 100644
--- a/sysdeps/unix/sysv/linux/alpha/bits/statfs.h
+++ b/sysdeps/unix/sysv/linux/alpha/bits/statfs.h
@@ -42,7 +42,8 @@ struct statfs
     __fsid_t f_fsid;
     int f_namelen;
     int f_frsize;
-    int f_spare[5];
+    int f_flags;
+    int f_spare[4];
   };
 
 #ifdef __USE_LARGEFILE64
@@ -58,7 +59,8 @@ struct statfs64
     __fsid_t f_fsid;
     int f_namelen;
     int f_frsize;
-    int f_spare[5];
+    int f_flags;
+    int f_spare[4];
   };
 #endif
 

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

commit 65342356965f356a7fb9b4578856c5ad0861d423
Author: Aurelien Jarno <aurelien@aurel32.net>
Date:   Tue Mar 1 10:00:28 2011 +1000

    alpha: Define DEFAULT_STACK_PERMS

diff --git a/ChangeLog.alpha b/ChangeLog.alpha
index ca354f1..473edac 100644
--- a/ChangeLog.alpha
+++ b/ChangeLog.alpha
@@ -1,5 +1,9 @@
 2011-02-28  Aurelien Jarno  <aurelien@aurel32.net>
 
+	* sysdeps/alpha/stackinfo.h: Define DEFAULT_STACK_PERMS with PF_X.
+
+2011-02-28  Aurelien Jarno  <aurelien@aurel32.net>
+
 	* sysdeps/unix/sysv/linux/alpha/bits/fcntl.h (F_SETPIPE_SZ,
 	F_GETPIPE_SZ): Define.
 
diff --git a/sysdeps/alpha/stackinfo.h b/sysdeps/alpha/stackinfo.h
index 0a281bd..d9dbc35 100644
--- a/sysdeps/alpha/stackinfo.h
+++ b/sysdeps/alpha/stackinfo.h
@@ -22,7 +22,13 @@
 #ifndef _STACKINFO_H
 #define _STACKINFO_H	1
 
+#include <elf.h>
+
 /* On Alpha the stack grows down.  */
 #define _STACK_GROWS_DOWN	1
 
+/* Default to an executable stack.  PF_X can be overridden if PT_GNU_STACK is
+ * present, but it is presumed absent.  */
+#define DEFAULT_STACK_PERMS (PF_R|PF_W|PF_X)
+
 #endif	/* stackinfo.h */

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

commit 146c8734c741e7f592cf07e7fd12644506c4c4c5
Author: Aurelien Jarno <aurelien@aurel32.net>
Date:   Tue Mar 1 09:59:13 2011 +1000

    alpha: Define F_GET/SETPIPE_SZ

diff --git a/ChangeLog.alpha b/ChangeLog.alpha
index d2030d6..ca354f1 100644
--- a/ChangeLog.alpha
+++ b/ChangeLog.alpha
@@ -1,3 +1,8 @@
+2011-02-28  Aurelien Jarno  <aurelien@aurel32.net>
+
+	* sysdeps/unix/sysv/linux/alpha/bits/fcntl.h (F_SETPIPE_SZ,
+	F_GETPIPE_SZ): Define.
+
 2010-09-26  Michael Cree  <mcree@orcon.net.nz>
 
 	* sysdeps/alpha/memchr.c: Include <bp-sym.h>
diff --git a/sysdeps/unix/sysv/linux/alpha/bits/fcntl.h b/sysdeps/unix/sysv/linux/alpha/bits/fcntl.h
index 860e9ac..e5e726b 100644
--- a/sysdeps/unix/sysv/linux/alpha/bits/fcntl.h
+++ b/sysdeps/unix/sysv/linux/alpha/bits/fcntl.h
@@ -97,6 +97,8 @@
 # define F_SETLEASE	1024	/* Set a lease.	 */
 # define F_GETLEASE	1025	/* Enquire what lease is active.  */
 # define F_NOTIFY	1026	/* Request notfications on a directory.	 */
+# define F_SETPIPE_SZ	1031    /* Set pipe page size array.  */
+# define F_GETPIPE_SZ	1032    /* Set pipe page size array.  */
 #endif
 #ifdef __USE_XOPEN2K8
 # define F_DUPFD_CLOEXEC 1030	/* Duplicate file descriptor with

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

Summary of changes:
 ChangeLog.alpha                             |   20 +++++++++++++++++---
 sysdeps/alpha/fpu/feupdateenv.c             |    1 +
 sysdeps/alpha/fpu/ftestexcept.c             |    1 +
 sysdeps/alpha/stackinfo.h                   |    6 ++++++
 sysdeps/unix/sysv/linux/alpha/bits/fcntl.h  |    2 ++
 sysdeps/unix/sysv/linux/alpha/bits/statfs.h |    6 ++++--
 6 files changed, 31 insertions(+), 5 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]