Minor documentation update for ast_event_queue().

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@193461 65c4cc65-6c06-0410-ace0-fbb531ad65f3
certified/1.8.6
Russell Bryant 17 years ago
parent 7e350686d6
commit 9c16774cc2

@ -358,12 +358,13 @@ void ast_event_destroy(struct ast_event *event);
* \param event the event to be queued * \param event the event to be queued
* *
* \retval zero success * \retval zero success
* \retval non-zero failure * \retval non-zero failure. Note that the caller of this function is
* responsible for destroying the event in the case of a failure.
* *
* This function queues an event to be dispatched to all of the appropriate * This function queues an event to be dispatched to all of the appropriate
* subscribers. This function will not block while the event is being * subscribers. This function will not block while the event is being
* dispatched because a pool of event dispatching threads handle the event * dispatched because the event is queued up for a dispatching thread
* queue. * to handle.
*/ */
int ast_event_queue(struct ast_event *event); int ast_event_queue(struct ast_event *event);

Loading…
Cancel
Save