about summary refs log tree commit diff
diff options
context:
space:
mode:
authorH.J. Lu <hjl.tools@gmail.com>2015-08-01 07:47:16 -0700
committerH.J. Lu <hjl.tools@gmail.com>2015-08-05 07:32:49 -0700
commit52e56468d7ac0e7d96effbe1950c396bfe40b75b (patch)
tree6339ed446b828a9805616089769c97ad2ac695e8
parent927c297ef4a8ded4f74f81d2b6fcb6e12ff0fa27 (diff)
downloadglibc-52e56468d7ac0e7d96effbe1950c396bfe40b75b.tar.gz
glibc-52e56468d7ac0e7d96effbe1950c396bfe40b75b.tar.xz
glibc-52e56468d7ac0e7d96effbe1950c396bfe40b75b.zip
Update x86 elision-conf.c for <cpu-features.h>
This patch updates x86 elision-conf.c to use the newly defined
HAS_CPU_FEATURE from <cpu-features.h>.

	* sysdeps/unix/sysv/linux/x86/elision-conf.c (elision_init):
	Replace HAS_RTM with HAS_CPU_FEATURE (RTM).
-rw-r--r--sysdeps/unix/sysv/linux/x86/elision-conf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/unix/sysv/linux/x86/elision-conf.c b/sysdeps/unix/sysv/linux/x86/elision-conf.c
index 84902aca3c..4a73382975 100644
--- a/sysdeps/unix/sysv/linux/x86/elision-conf.c
+++ b/sysdeps/unix/sysv/linux/x86/elision-conf.c
@@ -62,11 +62,11 @@ elision_init (int argc __attribute__ ((unused)),
 	      char **argv  __attribute__ ((unused)),
 	      char **environ)
 {
-  __elision_available = HAS_RTM;
+  __elision_available = HAS_CPU_FEATURE (RTM);
 #ifdef ENABLE_LOCK_ELISION
   __pthread_force_elision = __libc_enable_secure ? 0 : __elision_available;
 #endif
-  if (!HAS_RTM)
+  if (!HAS_CPU_FEATURE (RTM))
     __elision_aconf.retry_try_xbegin = 0; /* Disable elision on rwlocks */
 }