[asterisk-commits] russell: branch russell/iax_refcount r79911 - /team/russell/iax_refcount/incl...
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Fri Aug 17 15:33:28 CDT 2007
Author: russell
Date: Fri Aug 17 15:33:27 2007
New Revision: 79911
URL: http://svn.digium.com/view/asterisk?view=rev&rev=79911
Log:
spaces to tabs, doxygen tweaks
Modified:
team/russell/iax_refcount/include/asterisk/astobj2.h
Modified: team/russell/iax_refcount/include/asterisk/astobj2.h
URL: http://svn.digium.com/view/asterisk/team/russell/iax_refcount/include/asterisk/astobj2.h?view=diff&rev=79911&r1=79910&r2=79911
==============================================================================
--- team/russell/iax_refcount/include/asterisk/astobj2.h (original)
+++ team/russell/iax_refcount/include/asterisk/astobj2.h Fri Aug 17 15:33:27 2007
@@ -490,13 +490,19 @@
*/
struct __ao2_iterator {
- ao2_container *c; /* the container */
- int flags; /* operation flags */
-#define F_AO2I_DONTLOCK 1 /* don't lock when iterating */
- int bucket; /* current bucket */
- uint c_version; /* container version */
- void *obj; /* pointer to the current object */
- uint version; /* container version when the object was created */
+ /*! the container */
+ ao2_container *c;
+ /*! operation flags */
+ int flags;
+#define F_AO2I_DONTLOCK 1 /*!< don't lock when iterating */
+ /*! current bucket */
+ int bucket;
+ /*! container version */
+ uint c_version;
+ /*! pointer to the current object */
+ void *obj;
+ /*! container version when the object was created */
+ uint version;
};
typedef struct __ao2_iterator ao2_iterator;
More information about the asterisk-commits
mailing list