From: Russell Bryant Date: Wed, 28 Nov 2007 23:57:30 +0000 (+0000) Subject: Merge another small doxygen change from team/russell/chan_refcount to indicate X-Git-Tag: 1.6.0-beta1~3^2~605 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=68f8257484e9eb95ebed4ebfb189dc0771765956;p=thirdparty%2Fasterisk.git 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 --- 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);