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.17-899-g52dfbe1


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  52dfbe137e41f2da1f5584f6dd9ea89589c71228 (commit)
      from  3f16954315aa4da11eb33306395d28913b11fc32 (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=52dfbe137e41f2da1f5584f6dd9ea89589c71228

commit 52dfbe137e41f2da1f5584f6dd9ea89589c71228
Author: Siddhesh Poyarekar <siddhesh@redhat.com>
Date:   Thu Jul 4 20:33:03 2013 +0530

    Fix lock elision help text in INSTALL and configure

diff --git a/ChangeLog b/ChangeLog
index 68fe840..62f5fe0 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2013-07-04  Siddhesh Poyarekar  <siddhesh@redhat.com>
+
+	* configure.in (--enable-lock-elision): Fix message text.
+	* INSTALL: Regenerate.
+	* configure: Regenerate.
+
 2013-07-04  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
 
 	* sysdeps/powerpc/fpu/libm-test-ulps: Update.
diff --git a/INSTALL b/INSTALL
index f1b498a..721a7fc 100644
--- a/INSTALL
+++ b/INSTALL
@@ -134,7 +134,7 @@ will be used, and CFLAGS sets optimization options for the compiler.
      dynamic tests so that they can be invoked directly.
 
 `--enable-lock-elision=yes'
-     Enable lock elision for pthread mutexes and rwlocks by default.
+     Enable lock elision for pthread mutexes by default.
 
 `--build=BUILD-SYSTEM'
 `--host=HOST-SYSTEM'
diff --git a/configure b/configure
index a873b20..59a69f6 100755
--- a/configure
+++ b/configure
@@ -1401,8 +1401,7 @@ Optional Features:
                           initialize __stack_chk_guard canary with a random
                           number at program start
   --enable-lock-elision=yes/no
-                          Enable lock elision for pthread mutexes and rwlocks
-                          by default
+                          Enable lock elision for pthread mutexes by default
   --enable-add-ons[=DIRS...]
                           configure and build add-ons in DIR1,DIR2,... search
                           for add-ons if no parameter given
diff --git a/configure.in b/configure.in
index cf118f8..4db1acf 100644
--- a/configure.in
+++ b/configure.in
@@ -186,7 +186,7 @@ fi
 
 AC_ARG_ENABLE([lock-elision],
 	      AC_HELP_STRING([--enable-lock-elision[=yes/no]],
-			     [Enable lock elision for pthread mutexes and rwlocks by default]),
+			     [Enable lock elision for pthread mutexes by default]),
 	      [enable_lock_elision=$enableval],
 	      [enable_lock_elision=no])
 if test "$enable_lock_elision" = yes ; then

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

Summary of changes:
 ChangeLog    |    6 ++++++
 INSTALL      |    2 +-
 configure    |    3 +--
 configure.in |    2 +-
 4 files changed, 9 insertions(+), 4 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]