mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-21 04:46:29 +00:00
Fix doxygen comment about AST_LIST_HEAD_INIT_NOLOCK
git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.2@31738 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -370,7 +370,8 @@ struct { \
|
|||||||
\param head This is a pointer to the list head structure
|
\param head This is a pointer to the list head structure
|
||||||
|
|
||||||
This macro initializes a list head structure by setting the head
|
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) { \
|
#define AST_LIST_HEAD_INIT_NOLOCK(head) { \
|
||||||
(head)->first = NULL; \
|
(head)->first = NULL; \
|
||||||
|
Reference in New Issue
Block a user