[Asterisk-cvs] asterisk/include/asterisk channel.h,1.86,1.87
kpfleming at lists.digium.com
kpfleming at lists.digium.com
Sun Jun 5 22:26:47 CDT 2005
- Previous message: [Asterisk-cvs] asterisk app.c, 1.63, 1.64 channel.c, 1.200,
1.201 cli.c, 1.82, 1.83 manager.c, 1.97, 1.98 pbx.c, 1.252, 1.253
- Next message: [Asterisk-cvs] asterisk/apps app_groupcount.c, 1.15,
1.16 app_setcdruserfield.c, 1.6, 1.7 app_softhangup.c, 1.6,
1.7 app_zapscan.c, 1.16, 1.17
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Update of /usr/cvsroot/asterisk/include/asterisk
In directory mongoose.digium.com:/tmp/cvs-serv4861/include/asterisk
Modified Files:
channel.h
Log Message:
more efficient (and understandable) ast_channel_walk_locked, and vastly more efficient ast_channel_by_name_locked (bug #4265)
Index: channel.h
===================================================================
RCS file: /usr/cvsroot/asterisk/include/asterisk/channel.h,v
retrieving revision 1.86
retrieving revision 1.87
diff -u -d -r1.86 -r1.87
--- channel.h 5 Jun 2005 15:04:43 -0000 1.86
+++ channel.h 6 Jun 2005 02:29:18 -0000 1.87
@@ -744,10 +744,10 @@
* Returns the next channel in the list, NULL on end.
* If it returns a channel, that channel *has been locked*!
*/
-struct ast_channel *ast_channel_walk_locked(struct ast_channel *prev);
+struct ast_channel *ast_channel_walk_locked(const struct ast_channel *prev);
/*! Get channel by name (locks channel) */
-struct ast_channel *ast_get_channel_by_name_locked(char *channame);
+struct ast_channel *ast_get_channel_by_name_locked(const char *chan);
/*! Waits for a digit */
/*!
- Previous message: [Asterisk-cvs] asterisk app.c, 1.63, 1.64 channel.c, 1.200,
1.201 cli.c, 1.82, 1.83 manager.c, 1.97, 1.98 pbx.c, 1.252, 1.253
- Next message: [Asterisk-cvs] asterisk/apps app_groupcount.c, 1.15,
1.16 app_setcdruserfield.c, 1.6, 1.7 app_softhangup.c, 1.6,
1.7 app_zapscan.c, 1.16, 1.17
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the svn-commits
mailing list