[asterisk-commits] branch 1.2 r31738 - /branches/1.2/include/asterisk/linkedlists.h

asterisk-commits at lists.digium.com asterisk-commits at lists.digium.com
Sat Jun 3 07:48:13 MST 2006


Author: bweschke
Date: Sat Jun  3 09:48:13 2006
New Revision: 31738

URL: http://svn.digium.com/view/asterisk?rev=31738&view=rev
Log:
 Fix doxygen comment about AST_LIST_HEAD_INIT_NOLOCK


Modified:
    branches/1.2/include/asterisk/linkedlists.h

Modified: branches/1.2/include/asterisk/linkedlists.h
URL: http://svn.digium.com/view/asterisk/branches/1.2/include/asterisk/linkedlists.h?rev=31738&r1=31737&r2=31738&view=diff
==============================================================================
--- branches/1.2/include/asterisk/linkedlists.h (original)
+++ branches/1.2/include/asterisk/linkedlists.h Sat Jun  3 09:48:13 2006
@@ -370,7 +370,8 @@
   \param head This is a pointer to the list head structure
 
   This macro initializes a list head structure by setting the head
-  entry to \a NULL (empty list) and recreating the embedded lock.
+  entry to \a NULL (empty list). There is no embedded lock handling
+  with this macro.
 */
 #define AST_LIST_HEAD_INIT_NOLOCK(head) {				\
 	(head)->first = NULL;						\



More information about the asterisk-commits mailing list