[asterisk-commits] tilghman: branch 1.4 r169943 - /branches/1.4/include/asterisk/linkedlists.h
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Wed Jan 21 18:43:31 CST 2009
Author: tilghman
Date: Wed Jan 21 18:43:31 2009
New Revision: 169943
URL: http://svn.digium.com/svn-view/asterisk?view=rev&rev=169943
Log:
AST_RWLOCK_INIT_VALUE is always defined. What we really wanted to ask is
whether autoconf detected a static initializer value. This fixes rwlocks
on all such platforms (mainly, Mac OS X).
(closes issue #13767)
Reported by: jcovert
Patches:
20090121__bug13767.diff.txt uploaded by Corydon76 (license 14)
Tested by: jcovert, Corydon76
Modified:
branches/1.4/include/asterisk/linkedlists.h
Modified: branches/1.4/include/asterisk/linkedlists.h
URL: http://svn.digium.com/svn-view/asterisk/branches/1.4/include/asterisk/linkedlists.h?view=diff&rev=169943&r1=169942&r2=169943
==============================================================================
--- branches/1.4/include/asterisk/linkedlists.h (original)
+++ branches/1.4/include/asterisk/linkedlists.h Wed Jan 21 18:43:31 2009
@@ -277,7 +277,7 @@
This would define \c struct \c entry_list, intended to hold a list of
type \c struct \c entry.
*/
-#ifndef AST_RWLOCK_INIT_VALUE
+#ifndef HAVE_PTHREAD_RWLOCK_INITIALIZER
#define AST_RWLIST_HEAD_STATIC(name, type) \
struct name { \
struct type *first; \
More information about the asterisk-commits
mailing list