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]

GNU C Library master sources branch master updated. glibc-2.20-222-g0d79fa5


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 "GNU C Library master sources".

The branch, master has been updated
       via  0d79fa53b4fc43896a5732b84c763c141e1f170b (commit)
      from  b59d114bd1e0571fba85b3cbcc61d4f4b42f5d1b (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://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=0d79fa53b4fc43896a5732b84c763c141e1f170b

commit 0d79fa53b4fc43896a5732b84c763c141e1f170b
Author: Torvald Riegel <triegel@redhat.com>
Date:   Fri Nov 21 14:09:21 2014 +0100

    microblaze: 64b atomic operations are not supported.

diff --git a/ChangeLog b/ChangeLog
index 76fda28..b0041ea 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2014-11-21  Torvald Riegel  <triegel@redhat.com>
+
+	* sysdeps/microblaze/bits/atomic.h (__HAVE_64B_ATOMICS): Fix value
+	by setting it to 0.  64b atomics are not supported currently.
+
 2014-11-21  Alexandre Oliva <aoliva@redhat.com>
 
 	[BZ #16469]
diff --git a/sysdeps/microblaze/bits/atomic.h b/sysdeps/microblaze/bits/atomic.h
index 395162d..315c872 100644
--- a/sysdeps/microblaze/bits/atomic.h
+++ b/sysdeps/microblaze/bits/atomic.h
@@ -35,7 +35,7 @@ typedef uintptr_t uatomicptr_t;
 typedef intmax_t atomic_max_t;
 typedef uintmax_t uatomic_max_t;
 
-#define __HAVE_64B_ATOMICS 1
+#define __HAVE_64B_ATOMICS 0
 #define USE_ATOMIC_COMPILER_BUILTINS 0
 
 

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

Summary of changes:
 ChangeLog                        |    5 +++++
 sysdeps/microblaze/bits/atomic.h |    2 +-
 2 files changed, 6 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
GNU C Library master sources


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