summaryrefslogtreecommitdiff
path: root/include/asterisk/astobj2.h
diff options
context:
space:
mode:
authorRussell Bryant <russell@russellbryant.com>2007-11-30 18:47:14 +0000
committerRussell Bryant <russell@russellbryant.com>2007-11-30 18:47:14 +0000
commit45f98e541997648441c9c33175ddb7ef48f96ab2 (patch)
treed2b435ae3897e43c143e7b63628d57d2844cda97 /include/asterisk/astobj2.h
parent4a5b8ad6b3c6ee360a4c9ed6217be5f3377b369b (diff)
Merged revisions 90310 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r90310 | russell | 2007-11-30 12:46:46 -0600 (Fri, 30 Nov 2007) | 2 lines Add some notes on the behavior of ao2_unlink() after a discussion with Tilghman ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@90311 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'include/asterisk/astobj2.h')
-rw-r--r--include/asterisk/astobj2.h19
1 files changed, 18 insertions, 1 deletions
diff --git a/include/asterisk/astobj2.h b/include/asterisk/astobj2.h
index bef3c9a79..4c35c4641 100644
--- a/include/asterisk/astobj2.h
+++ b/include/asterisk/astobj2.h
@@ -364,7 +364,24 @@ int ao2_container_count(struct ao2_container *c);
* \note Remember to set the key before calling this function.
*/
void *ao2_link(struct ao2_container *c, void *newobj);
-void *ao2_unlink(struct ao2_container *c, void *newobj);
+/*!
+ * \brief Remove an object from the container
+ *
+ * \arg c the container
+ * \arg obj the object to unlink
+ *
+ * \retval NULL, always
+ *
+ * \note The object requested to be unlinked must be valid. However, if it turns
+ * out that it is not in the container, this function is still safe to
+ * be called.
+ *
+ * \note If the object gets unlinked from the container, the container's
+ * reference to the object will be automatically released. This is
+ * slightly different than ao2_link(), which inherits a reference instead
+ * of automatically increasing the reference count.
+ */
+void *ao2_unlink(struct ao2_container *c, void *obj);
/*! \brief Used as return value if the flag OBJ_MULTIPLE is set */
struct ao2_list {