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.16-ports-merge-741-g86fe56b


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  86fe56bbdece927de2b0c6f122493e97ad12937a (commit)
      from  3bae7c5d987f84cc57b56e1a65e04fbbacdc17ed (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.git;a=commitdiff;h=86fe56bbdece927de2b0c6f122493e97ad12937a

commit 86fe56bbdece927de2b0c6f122493e97ad12937a
Author: Marcus Shawcroft <marcus.shawcroft@linaro.org>
Date:   Wed Nov 21 12:24:11 2012 +0000

    aarch64: Fix lll_futex_timed_wait_bitset return value sign.
    
    The implementation of lll_futex_timed_wait_bitset should not be negating
    the futex syscall return value on error.

diff --git a/ports/ChangeLog.aarch64 b/ports/ChangeLog.aarch64
index 7088c23..2caca32 100644
--- a/ports/ChangeLog.aarch64
+++ b/ports/ChangeLog.aarch64
@@ -1,3 +1,8 @@
+2012-11-21  Marcus Shawcroft  <marcus.shawcroft@linaro.org>
+
+	* sysdeps/unix/sysv/linux/aarch64/nptl/lowlevellock.h
+	(lll_futex_timed_wait_bitset): Remove INTERNAL_SYSCALL_ERROR_P.
+
 2012-11-20  Marcus Shawcroft  <marcus.shawcroft@linaro.org>
 
 	* sysdeps/aarch64/fpu/s_fma.c (weak_alias_x):
diff --git a/ports/sysdeps/unix/sysv/linux/aarch64/nptl/lowlevellock.h b/ports/sysdeps/unix/sysv/linux/aarch64/nptl/lowlevellock.h
index e4f0c94..705cffd 100644
--- a/ports/sysdeps/unix/sysv/linux/aarch64/nptl/lowlevellock.h
+++ b/ports/sysdeps/unix/sysv/linux/aarch64/nptl/lowlevellock.h
@@ -96,7 +96,7 @@
 			      __lll_private_flag (__op, private),	\
 			      (val), (timespec), NULL /* Unused.  */,	\
 			      FUTEX_BITSET_MATCH_ANY);			\
-    INTERNAL_SYSCALL_ERROR_P (__ret, __err) ? -__ret : __ret;		\
+    __ret;								\
   })
 
 #define lll_futex_wake(futexp, nr, private) \

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

Summary of changes:
 ports/ChangeLog.aarch64                            |    5 +++++
 .../unix/sysv/linux/aarch64/nptl/lowlevellock.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]