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.15-837-gc0d2c85


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  c0d2c8538a89c7a3de158ab60fe35fe1f9960803 (commit)
      from  1f59b0b121e1fe9df13560096c55d8ad6c6e8c46 (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=c0d2c8538a89c7a3de158ab60fe35fe1f9960803

commit c0d2c8538a89c7a3de158ab60fe35fe1f9960803
Author: H.J. Lu <hjl.tools@gmail.com>
Date:   Fri May 11 10:12:42 2012 -0700

    Check __x86_64__ for __cleanup_fct_attribute

diff --git a/nptl/ChangeLog b/nptl/ChangeLog
index 1f6bfed..a135ce0 100644
--- a/nptl/ChangeLog
+++ b/nptl/ChangeLog
@@ -1,5 +1,11 @@
 2012-05-11  H.J. Lu  <hongjiu.lu@intel.com>
 
+	* sysdeps/unix/sysv/linux/x86_64/bits/pthreadtypes.h
+	(__cleanup_fct_attribute): Check __x86_64__ instead of
+	__x86_64__.
+
+2012-05-11  H.J. Lu  <hongjiu.lu@intel.com>
+
 	* sysdeps/pthread/pthread.h (PTHREAD_MUTEX_INITIALIZER): Check
 	__PTHREAD_MUTEX_HAVE_PREV instead of __WORDSIZE.
 	(PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP): Likewise.
diff --git a/nptl/sysdeps/unix/sysv/linux/x86_64/bits/pthreadtypes.h b/nptl/sysdeps/unix/sysv/linux/x86_64/bits/pthreadtypes.h
index 32be0b6..e05b8f5 100644
--- a/nptl/sysdeps/unix/sysv/linux/x86_64/bits/pthreadtypes.h
+++ b/nptl/sysdeps/unix/sysv/linux/x86_64/bits/pthreadtypes.h
@@ -219,7 +219,7 @@ typedef union
 #endif
 
 
-#if __WORDSIZE == 32
+#ifndef __x86_64__
 /* Extra attributes for the cleanup functions.  */
 # define __cleanup_fct_attribute __attribute__ ((__regparm__ (1)))
 #endif

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

Summary of changes:
 nptl/ChangeLog                                     |    6 ++++++
 .../unix/sysv/linux/x86_64/bits/pthreadtypes.h     |    2 +-
 2 files changed, 7 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]