mirror of
https://github.com/asterisk/asterisk.git
synced 2025-11-16 14:58:25 +00:00
remove experimental module version tags
add per-file revision tags and 'show version files' CLI command git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@5864 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -66,14 +66,14 @@ struct name { \
|
||||
|
||||
Example usage:
|
||||
\code
|
||||
static AST_LIST_HEAD_STATIC(entry_list, entry) entries;
|
||||
static AST_LIST_HEAD_STATIC(entry_list, entry);
|
||||
\endcode
|
||||
|
||||
This would define \c struct \c entry_list, and declare an instance of it named
|
||||
\a entries, all intended to hold a list of type \c struct \c entry.
|
||||
This would define \c struct \c entry_list, intended to hold a list of
|
||||
type \c struct \c entry.
|
||||
*/
|
||||
#define AST_LIST_HEAD_STATIC(name, type) \
|
||||
struct name { \
|
||||
struct name { \
|
||||
struct type *first; \
|
||||
ast_mutex_t lock; \
|
||||
} name = { \
|
||||
|
||||
Reference in New Issue
Block a user