00db10
commit c727f0325376e202d095be718daf64661409e499
00db10
Author: Roland McGrath <roland@hack.frob.com>
00db10
Date:   Thu May 1 13:08:30 2014 -0700
00db10
00db10
    Deconditionalize use of LLL_LOCK_INITIALIZER in bits/libc-lock.h.
00db10
00db10
Conflicts:
00db10
	nptl/sysdeps/pthread/bits/libc-lock.h
00db10
00db10
Due to IS_IN backport in glibc-rh1256317-2.patch.
00db10
00db10
diff --git a/nptl/sysdeps/pthread/bits/libc-lock.h b/nptl/sysdeps/pthread/bits/libc-lock.h
00db10
index 361063febbfec054..f6e413ad435e3fb2 100644
00db10
--- a/nptl/sysdeps/pthread/bits/libc-lock.h
00db10
+++ b/nptl/sysdeps/pthread/bits/libc-lock.h
00db10
@@ -48,13 +48,8 @@ typedef struct __libc_lock_recursive_opaque__ __libc_lock_recursive_t;
00db10
 /* Define an initialized recursive lock variable NAME with storage
00db10
    class CLASS.  */
00db10
 #if defined _LIBC && (IS_IN (libc) || IS_IN (libpthread))
00db10
-# if LLL_LOCK_INITIALIZER == 0
00db10
-#  define __libc_lock_define_initialized_recursive(CLASS,NAME) \
00db10
-  CLASS __libc_lock_recursive_t NAME;
00db10
-# else
00db10
-#  define __libc_lock_define_initialized_recursive(CLASS,NAME) \
00db10
+# define __libc_lock_define_initialized_recursive(CLASS, NAME) \
00db10
   CLASS __libc_lock_recursive_t NAME = _LIBC_LOCK_RECURSIVE_INITIALIZER;
00db10
-# endif
00db10
 # define _LIBC_LOCK_RECURSIVE_INITIALIZER \
00db10
   { LLL_LOCK_INITIALIZER, 0, NULL }
00db10
 #else