[asterisk-commits] russell: branch russell/chan_refcount r99639 - /team/russell/chan_refcount/in...

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Tue Jan 22 13:27:28 CST 2008


Author: russell
Date: Tue Jan 22 13:27:28 2008
New Revision: 99639

URL: http://svn.digium.com/view/asterisk?view=rev&rev=99639
Log:
commit minor change in my working copy

Modified:
    team/russell/chan_refcount/include/asterisk/channel.h

Change Statistics:
 0 files changed

Modified: team/russell/chan_refcount/include/asterisk/channel.h
URL: http://svn.digium.com/view/asterisk/team/russell/chan_refcount/include/asterisk/channel.h?view=diff&rev=99639&r1=99638&r2=99639
==============================================================================
--- team/russell/chan_refcount/include/asterisk/channel.h (original)
+++ team/russell/chan_refcount/include/asterisk/channel.h Tue Jan 22 13:27:28 2008
@@ -120,12 +120,6 @@
 	in the \ref ast_channel structure.
 */
 
-/*!
- * \page AstChannel ast_channel locking and reference tracking
- *
- * XXX /todo Write this.
- */
-
 #ifndef _ASTERISK_CHANNEL_H
 #define _ASTERISK_CHANNEL_H
 
@@ -393,13 +387,21 @@
 	AST_STATE_MUTE = (1 << 16),	/*!< Do not transmit voice data */
 };
 
+/*!
+ * \page AstChannel ast_channel locking and reference tracking
+ *
+ * XXX /todo Write this.
+ *
+ * \par Internal Storage
+ * A channel is allocated using the ast_channel_alloc() function.  When created,
+ */
+
 /*! \brief Main Channel structure associated with a channel. 
  * This is the side of it mostly used by the pbx and call management.
  *
  * \note XXX It is important to remember to increment .cleancount each time
  *       this structure is changed. XXX
  */
-
 struct ast_channel {
 	const struct ast_channel_tech *tech;		/*!< Technology (point to channel driver) */
 




More information about the asterisk-commits mailing list