[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
- Previous message: [Asterisk-cvs] asterisk/include asterisk.h,1.2,1.3
- Next message: [Asterisk-cvs] asterisk acl.c, 1.44, 1.45 alaw.c, 1.2, 1.3 app.c,
1.65, 1.66 asterisk.c, 1.160, 1.161 astmm.c, 1.14,
1.15 autoservice.c, 1.11, 1.12 callerid.c, 1.31, 1.32 cdr.c,
1.39, 1.40 channel.c, 1.201, 1.202 chanvars.c, 1.7, 1.8 cli.c,
1.85, 1.86 config.c, 1.65, 1.66 config_old.c, 1.3, 1.4 db.c,
1.17, 1.18 dns.c, 1.13, 1.14 dnsmgr.c, 1.4, 1.5 dsp.c, 1.42,
1.43 enum.c, 1.25, 1.26 file.c, 1.67, 1.68 frame.c, 1.56,
1.57 fskmodem.c, 1.6, 1.7 image.c, 1.14, 1.15 indications.c,
1.24, 1.25 io.c, 1.9, 1.10 jitterbuf.c, 1.14, 1.15 loader.c,
1.44, 1.45 logger.c, 1.73, 1.74 manager.c, 1.98, 1.99 md5.c,
1.13, 1.14 pbx.c, 1.253, 1.254 plc.c, 1.4, 1.5 privacy.c, 1.4,
1.5 rtp.c, 1.132, 1.133 say.c, 1.59, 1.60 sched.c, 1.18,
1.19 srv.c, 1.12, 1.13 tdd.c, 1.5, 1.6 term.c, 1.9,
1.10 translate.c, 1.36, 1.37 ulaw.c, 1.3, 1.4 utils.c, 1.46, 1.47
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
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 */
- Previous message: [Asterisk-cvs] asterisk/include asterisk.h,1.2,1.3
- Next message: [Asterisk-cvs] asterisk acl.c, 1.44, 1.45 alaw.c, 1.2, 1.3 app.c,
1.65, 1.66 asterisk.c, 1.160, 1.161 astmm.c, 1.14,
1.15 autoservice.c, 1.11, 1.12 callerid.c, 1.31, 1.32 cdr.c,
1.39, 1.40 channel.c, 1.201, 1.202 chanvars.c, 1.7, 1.8 cli.c,
1.85, 1.86 config.c, 1.65, 1.66 config_old.c, 1.3, 1.4 db.c,
1.17, 1.18 dns.c, 1.13, 1.14 dnsmgr.c, 1.4, 1.5 dsp.c, 1.42,
1.43 enum.c, 1.25, 1.26 file.c, 1.67, 1.68 frame.c, 1.56,
1.57 fskmodem.c, 1.6, 1.7 image.c, 1.14, 1.15 indications.c,
1.24, 1.25 io.c, 1.9, 1.10 jitterbuf.c, 1.14, 1.15 loader.c,
1.44, 1.45 logger.c, 1.73, 1.74 manager.c, 1.98, 1.99 md5.c,
1.13, 1.14 pbx.c, 1.253, 1.254 plc.c, 1.4, 1.5 privacy.c, 1.4,
1.5 rtp.c, 1.132, 1.133 say.c, 1.59, 1.60 sched.c, 1.18,
1.19 srv.c, 1.12, 1.13 tdd.c, 1.5, 1.6 term.c, 1.9,
1.10 translate.c, 1.36, 1.37 ulaw.c, 1.3, 1.4 utils.c, 1.46, 1.47
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the svn-commits
mailing list