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.15-73-g3287d41


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  3287d4162fd765d905f19a8fc4847a455e71e3ff (commit)
       via  b98de9639c5d161f9408cd88e654e0725fc54c1d (commit)
      from  22f7e902913d4a9af5cd927ee67e6413c1708f23 (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=3287d4162fd765d905f19a8fc4847a455e71e3ff

commit 3287d4162fd765d905f19a8fc4847a455e71e3ff
Author: Aurelien Jarno <aurelien@aurel32.net>
Date:   Mon Feb 20 08:38:54 2012 -0800

    alpha: Fix _SC_LEVEL*CACHE*

diff --git a/ChangeLog.alpha b/ChangeLog.alpha
index b48d421..e629a44 100644
--- a/ChangeLog.alpha
+++ b/ChangeLog.alpha
@@ -1,3 +1,7 @@
+2012-02-20  Aurelien Jarno  <aurelien@aurel32.net>
+
+        * sysdeps/unix/sysv/linux/alpha/sysconf.c: Fix cache sysconf switch.
+
 2012-02-16  Richard Henderson  <rth@twiddle.net>
 
 	* sysdeps/alpha/fpu/fenv_libc.h (__ieee_set_fp_control,
diff --git a/sysdeps/unix/sysv/linux/alpha/sysconf.c b/sysdeps/unix/sysv/linux/alpha/sysconf.c
index 51a2a47..5623328 100644
--- a/sysdeps/unix/sysv/linux/alpha/sysconf.c
+++ b/sysdeps/unix/sysv/linux/alpha/sysconf.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 2004 Free Software Foundation, Inc.
+/* Copyright (C) 2004, 2012 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
@@ -135,7 +135,7 @@ __sysconf (int name)
   if (shape <= 0)
     return shape;
 
-  switch (name % 3)
+  switch ((name - _SC_LEVEL1_ICACHE_SIZE) % 3)
     {
     case 0: /* total size */
       return shape & -0x100;

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

commit b98de9639c5d161f9408cd88e654e0725fc54c1d
Author: Richard Henderson <rth@twiddle.net>
Date:   Thu Feb 16 12:06:54 2012 -0800

    alpha: Eliminate plt entries for __ieee_[sg]et_fp_control

diff --git a/ChangeLog.alpha b/ChangeLog.alpha
index 5b98b1e..b48d421 100644
--- a/ChangeLog.alpha
+++ b/ChangeLog.alpha
@@ -1,3 +1,8 @@
+2012-02-16  Richard Henderson  <rth@twiddle.net>
+
+	* sysdeps/alpha/fpu/fenv_libc.h (__ieee_set_fp_control,
+	__ieee_get_fp_control): Mark as hidden proto.
+
 2012-02-15  Mike Hommey  <mh+reportbug@glandium.org>
 
 	[BZ #11677]
diff --git a/sysdeps/alpha/fpu/fenv_libc.h b/sysdeps/alpha/fpu/fenv_libc.h
index f1d187d..edcc654 100644
--- a/sysdeps/alpha/fpu/fenv_libc.h
+++ b/sysdeps/alpha/fpu/fenv_libc.h
@@ -1,5 +1,5 @@
 /* Internal libc stuff for floating point environment routines.
-   Copyright (C) 2000 Free Software Foundation, Inc.
+   Copyright (C) 2000, 2012 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
@@ -33,4 +33,8 @@
 				| SWCR_MAP_MASK		\
 				| SWCR_STATUS_MASK)
 
+/* These are declared for public consumption in <bits/fenv.h>.  */
+libc_hidden_proto(__ieee_set_fp_control)
+libc_hidden_proto(__ieee_get_fp_control)
+
 #endif /* fenv_libc.h */

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

Summary of changes:
 ChangeLog.alpha                         |    9 +++++++++
 sysdeps/alpha/fpu/fenv_libc.h           |    6 +++++-
 sysdeps/unix/sysv/linux/alpha/sysconf.c |    4 ++--
 3 files changed, 16 insertions(+), 3 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]