[Asterisk-cvs] asterisk/include/asterisk linkedlists.h, 1.13, 1.14 module.h, 1.17, 1.18

kpfleming at lists.digium.com kpfleming at lists.digium.com
Mon Jun 6 16:25:25 CDT 2005


Update of /usr/cvsroot/asterisk/include/asterisk
In directory mongoose.digium.com:/tmp/cvs-serv10735/include/asterisk

Modified Files:
	linkedlists.h module.h 
Log Message:
remove experimental module version tags
add per-file revision tags and 'show version files' CLI command


Index: linkedlists.h
===================================================================
RCS file: /usr/cvsroot/asterisk/include/asterisk/linkedlists.h,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -d -r1.13 -r1.14
--- linkedlists.h	15 May 2005 02:42:59 -0000	1.13
+++ linkedlists.h	6 Jun 2005 20:27:51 -0000	1.14
@@ -66,14 +66,14 @@
 
   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 = {								\

Index: module.h
===================================================================
RCS file: /usr/cvsroot/asterisk/include/asterisk/module.h,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -d -r1.17 -r1.18
--- module.h	6 Jun 2005 18:31:29 -0000	1.17
+++ module.h	6 Jun 2005 20:27:51 -0000	1.18
@@ -66,8 +66,6 @@
  */
 int reload(void);		/*! reload configs */
 
-const char *version(void);
-
 #define ASTERISK_GPL_KEY \
 	"This paragraph is Copyright (C) 2000, Linux Support Services, Inc.  \
 In order for your module to load, it must return this key via a function \
@@ -116,7 +114,7 @@
  * For each of the modules loaded, modentry will be executed with the resource, description,
  * version, and usecount values of each particular module.
  */
-int ast_update_module_list(int (*modentry)(const char *module, const char *description, int usecnt, const char *version, const char *like),
+int ast_update_module_list(int (*modentry)(const char *module, const char *description, int usecnt, const char *like),
 			   const char *like);
 
 /*! Ask this procedure to be run with modules have been updated */




More information about the svn-commits mailing list