From 68f8257484e9eb95ebed4ebfb189dc0771765956 Mon Sep 17 00:00:00 2001 From: Russell Bryant Date: Wed, 28 Nov 2007 23:57:30 +0000 Subject: [PATCH] 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: https://origsvn.digium.com/svn/asterisk/trunk@90141 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- include/asterisk/audiohook.h | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/include/asterisk/audiohook.h b/include/asterisk/audiohook.h index 1591d0ca57..3fd2eb1bf0 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);