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:
Kevin P. Fleming
2005-06-06 20:27:51 +00:00
parent 6cbf69981d
commit 0e6762dd5f
45 changed files with 300 additions and 66 deletions

View File

@@ -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 = { \