[svn-commits] rmudgett: branch rmudgett/ao2_red_black r371646 - in /team/rmudgett/ao2_red_b...

SVN commits to the Digium repositories svn-commits at lists.digium.com
Thu Aug 23 16:44:22 CDT 2012


Author: rmudgett
Date: Thu Aug 23 16:44:18 2012
New Revision: 371646

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=371646
Log:
Convert rbtree since 12.0 to 12.0.0

Modified:
    team/rmudgett/ao2_red_black/main/astobj2.c
    team/rmudgett/ao2_red_black/tests/test_astobj2.c

Modified: team/rmudgett/ao2_red_black/main/astobj2.c
URL: http://svnview.digium.com/svn/asterisk/team/rmudgett/ao2_red_black/main/astobj2.c?view=diff&rev=371646&r1=371645&r2=371646
==============================================================================
--- team/rmudgett/ao2_red_black/main/astobj2.c (original)
+++ team/rmudgett/ao2_red_black/main/astobj2.c Thu Aug 23 16:44:18 2012
@@ -3072,7 +3072,7 @@
 /*!
  * \internal
  * \brief Get the most left node in the tree.
- * \since 12.0
+ * \since 12.0.0
  *
  * \param node Starting node to find the most left node.
  *
@@ -3090,7 +3090,7 @@
 /*!
  * \internal
  * \brief Get the most right node in the tree.
- * \since 12.0
+ * \since 12.0.0
  *
  * \param node Starting node to find the most right node.
  *
@@ -3108,7 +3108,7 @@
 /*!
  * \internal
  * \brief Get the next node in ascending sequence.
- * \since 12.0
+ * \since 12.0.0
  *
  * \param node Starting node to find the next node.
  *
@@ -3135,7 +3135,7 @@
 /*!
  * \internal
  * \brief Get the next node in descending sequence.
- * \since 12.0
+ * \since 12.0.0
  *
  * \param node Starting node to find the previous node.
  *
@@ -3162,7 +3162,7 @@
 /*!
  * \internal
  * \brief Get the next node in pre-order sequence.
- * \since 12.0
+ * \since 12.0.0
  *
  * \param node Starting node to find the next node.
  *
@@ -3198,7 +3198,7 @@
 /*!
  * \internal
  * \brief Get the next node in post-order sequence.
- * \since 12.0
+ * \since 12.0.0
  *
  * \param node Starting node to find the next node.
  *
@@ -3243,7 +3243,7 @@
 /*!
  * \internal
  * \brief Get the next non-empty node in ascending sequence.
- * \since 12.0
+ * \since 12.0.0
  *
  * \param node Starting node to find the next node.
  *
@@ -3263,7 +3263,7 @@
 /*!
  * \internal
  * \brief Get the next non-empty node in descending sequence.
- * \since 12.0
+ * \since 12.0.0
  *
  * \param node Starting node to find the previous node.
  *
@@ -3283,7 +3283,7 @@
 /*!
  * \internal
  * \brief Determine which way to go from an empty node.
- * \since 12.0
+ * \since 12.0.0
  *
  * \param empty Empty node to determine which side obj_right goes on.
  * \param sort_fn Sort comparison function for non-empty nodes.
@@ -3375,7 +3375,7 @@
 /*!
  * \internal
  * \brief Create an empty copy of this container.
- * \since 12.0
+ * \since 12.0.0
  *
  * \param self Container to operate upon.
  *
@@ -3401,7 +3401,7 @@
 /*!
  * \internal
  * \brief Create an empty copy of this container. (Debug version)
- * \since 12.0
+ * \since 12.0.0
  *
  * \param self Container to operate upon.
  * \param tag used for debugging.
@@ -3432,7 +3432,7 @@
 /*!
  * \internal
  * \brief Destroy a rbtree container node.
- * \since 12.0
+ * \since 12.0.0
  *
  * \param v_doomed Container node to destroy.
  *
@@ -3489,7 +3489,7 @@
 /*!
  * \internal
  * \brief Create a new container node.
- * \since 12.0
+ * \since 12.0.0
  *
  * \param self Container to operate upon.
  * \param obj_new Object to put into the node.
@@ -3524,7 +3524,7 @@
 /*!
  * \internal
  * \brief Fixup the rbtree after inserting a non-root node.
- * \since 12.0
+ * \since 12.0.0
  *
  * \param self Container to operate upon.
  * \param node Container node just inserted into the container.
@@ -3539,7 +3539,7 @@
 /*!
  * \internal
  * \brief Insert a node into this container.
- * \since 12.0
+ * \since 12.0.0
  *
  * \param self Container to operate upon.
  * \param node Container node to insert into the container.
@@ -3800,7 +3800,7 @@
 /*!
  * \internal
  * \brief Find the next rbtree container node in a traversal.
- * \since 12.0
+ * \since 12.0.0
  *
  * \param self Container to operate upon.
  * \param state Traversal state to restart rbtree container traversal.
@@ -3903,7 +3903,7 @@
 /*!
  * \internal
  * \brief Find an initial matching node.
- * \since 12.0
+ * \since 12.0.0
  *
  * \param self Container to operate upon.
  * \param obj_right pointer to the (user-defined part) of an object.
@@ -3950,7 +3950,7 @@
 /*!
  * \internal
  * \brief Find the first rbtree container node in a traversal.
- * \since 12.0
+ * \since 12.0.0
  *
  * \param self Container to operate upon.
  * \param flags search_flags to control traversing the container
@@ -4133,7 +4133,7 @@
 /*!
  * \internal
  * \brief Cleanup the rbtree container traversal state.
- * \since 12.0
+ * \since 12.0.0
  *
  * \param state Traversal state to cleanup.
  *
@@ -4149,7 +4149,7 @@
 /*!
  * \internal
  * \brief Find the next non-empty iteration node in the container.
- * \since 12.0
+ * \since 12.0.0
  *
  * \param self Container to operate upon.
  * \param node Previous node returned by the iterator.
@@ -4200,7 +4200,7 @@
  * \internal
  *
  * \brief Destroy this container.
- * \since 12.0
+ * \since 12.0.0
  *
  * \param self Container to operate upon.
  *
@@ -4219,7 +4219,7 @@
 /*!
  * \internal
  * \brief Perform an integrity check on the specified container.
- * \since 12.0
+ * \since 12.0.0
  *
  * \param self Container to check integrity.
  *

Modified: team/rmudgett/ao2_red_black/tests/test_astobj2.c
URL: http://svnview.digium.com/svn/asterisk/team/rmudgett/ao2_red_black/tests/test_astobj2.c?view=diff&rev=371646&r1=371645&r2=371646
==============================================================================
--- team/rmudgett/ao2_red_black/tests/test_astobj2.c (original)
+++ team/rmudgett/ao2_red_black/tests/test_astobj2.c Thu Aug 23 16:44:18 2012
@@ -46,7 +46,7 @@
 /*!
  * \internal
  * \brief Convert the container type enum to string.
- * \since 12.0
+ * \since 12.0.0
  *
  * \param type Container type value to convert to string.
  *
@@ -203,7 +203,7 @@
 /*!
  * \internal
  * \brief Test container cloning.
- * \since 12.0
+ * \since 12.0.0
  *
  * \param res Passed in enum ast_test_result_state.
  * \param orig Container to clone.
@@ -264,7 +264,7 @@
 /*!
  * \internal
  * \brief Test ao2_find with no flags.
- * \since 12.0
+ * \since 12.0.0
  *
  * \param res Passed in enum ast_test_result_state.
  * \param look_in Container to search.
@@ -303,7 +303,7 @@
 /*!
  * \internal
  * \brief Test ao2_find with OBJ_POINTER.
- * \since 12.0
+ * \since 12.0.0
  *
  * \param res Passed in enum ast_test_result_state.
  * \param look_in Container to search.
@@ -342,7 +342,7 @@
 /*!
  * \internal
  * \brief Test ao2_find with OBJ_KEY.
- * \since 12.0
+ * \since 12.0.0
  *
  * \param res Passed in enum ast_test_result_state.
  * \param look_in Container to search.
@@ -379,7 +379,7 @@
 /*!
  * \internal
  * \brief Test ao2_find with OBJ_PARTIAL_KEY.
- * \since 12.0
+ * \since 12.0.0
  *
  * \param res Passed in enum ast_test_result_state.
  * \param look_in Container to search.
@@ -1050,7 +1050,7 @@
 /*!
  * \internal
  * \brief Make a nonsorted container for astobj2 testing.
- * \since 12.0
+ * \since 12.0.0
  *
  * \param type Container type to create.
  * \param options Container options
@@ -1080,7 +1080,7 @@
 /*!
  * \internal
  * \brief Make a sorted container for astobj2 testing.
- * \since 12.0
+ * \since 12.0.0
  *
  * \param type Container type to create.
  * \param options Container options
@@ -1110,7 +1110,7 @@
 /*!
  * \internal
  * \brief Insert the given test vector into the given container.
- * \since 12.0
+ * \since 12.0.0
  *
  * \note The given test vector must not have any duplicates.
  *
@@ -1162,7 +1162,7 @@
 /*!
  * \internal
  * \brief Insert duplicates of number into the given container.
- * \since 12.0
+ * \since 12.0.0
  *
  * \note The given container must not already have the number in it.
  *
@@ -1232,7 +1232,7 @@
 /*!
  * \internal
  * \brief Iterate over the container and compare the objects with the given vector.
- * \since 12.0
+ * \since 12.0.0
  *
  * \param res Passed in enum ast_test_result_state.
  * \param container Container to iterate.
@@ -1291,7 +1291,7 @@
 /*!
  * \internal
  * \brief Run an ao2_callback() and compare the returned vector with the given vector.
- * \since 12.0
+ * \since 12.0.0
  *
  * \param res Passed in enum ast_test_result_state.
  * \param container Container to traverse.
@@ -1349,7 +1349,7 @@
 /*!
  * \internal
  * \brief Run an ao2_find() for duplicates and compare the returned vector with the given vector.
- * \since 12.0
+ * \since 12.0.0
  *
  * \param res Passed in enum ast_test_result_state.
  * \param container Container to traverse.
@@ -1412,7 +1412,7 @@
 /*!
  * \internal
  * \brief Test nonsorted container traversal.
- * \since 12.0
+ * \since 12.0.0
  *
  * \param res Passed in enum ast_test_result_state.
  * \param tst_num Test number.
@@ -1610,7 +1610,7 @@
 /*!
  * \internal
  * \brief Test sorted container traversal.
- * \since 12.0
+ * \since 12.0.0
  *
  * \param res Passed in enum ast_test_result_state.
  * \param tst_num Test number.




More information about the svn-commits mailing list