aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2007-11-28 23:57:30 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2007-11-28 23:57:30 +0000
commitbf1706909cfd31b51ab12d26b20e836194d0dbd8 (patch)
treeaf7a53fb8c7f1a0c51b303b3d2a72ecbacdc48bc
parent7d8b10cc2f7aaa17b5e8ae7cfd0d1e823108f415 (diff)
Merge another small doxygen change from team/russell/chan_refcount to indicate
that a channel doesn't need to be locked before calling a certain function. git-svn-id: http://svn.digium.com/svn/asterisk/trunk@90141 f38db490-d61c-443f-a65b-d21fe96a405b
-rw-r--r--include/asterisk/audiohook.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/include/asterisk/audiohook.h b/include/asterisk/audiohook.h
index 1591d0ca5..3fd2eb1bf 100644
--- a/include/asterisk/audiohook.h
+++ b/include/asterisk/audiohook.h
@@ -145,10 +145,15 @@ int ast_audiohook_detach(struct ast_audiohook *audiohook);
*/
int ast_audiohook_detach_list(struct ast_audiohook_list *audiohook_list);
-/*! \brief Detach specified source audiohook from channel
+/*!
+ * \brief Detach specified source audiohook from channel
+ *
* \param chan Channel to detach from
* \param source Name of source to detach
+ *
* \return Returns 0 on success, -1 on failure
+ *
+ * \note The channel does not need to be locked before calling this function.
*/
int ast_audiohook_detach_source(struct ast_channel *chan, const char *source);