taskpool: Fix some references to threadpool that should be taskpool.

Resolves: #1478
This commit is contained in:
George Joseph
2025-10-10 06:26:05 -06:00
committed by Asterisk Development Team
parent fab6098cc9
commit d8d79a6bf7
5 changed files with 14 additions and 14 deletions

View File

@@ -649,7 +649,7 @@ struct stasis_subscription *__stasis_subscribe(struct stasis_topic *topic,
#define stasis_subscribe(topic, callback, data) __stasis_subscribe(topic, callback, data, __FILE__, __LINE__, __PRETTY_FUNCTION__)
/*!
* \brief Create a subscription whose callbacks occur on a thread pool
* \brief Create a subscription whose callbacks occur on a task pool
*
* In addition to being AO2 managed memory (requiring an ao2_cleanup() to free
* up this reference), the subscription must be explicitly unsubscribed from its
@@ -659,7 +659,7 @@ struct stasis_subscription *__stasis_subscribe(struct stasis_topic *topic,
* always happen on the same thread. The invocation order of different subscriptions
* is unspecified.
*
* Unlike \ref stasis_subscribe, this function will explicitly use a threadpool to
* Unlike \ref stasis_subscribe, this function will explicitly use a taskpool to
* dispatch items to its \c callback. This form of subscription should be used
* when many subscriptions may be made to the specified \c topic.
*

View File

@@ -54,7 +54,7 @@
* \param needs_mailbox Determines whether or not the subscription requires a mailbox.
* Subscriptions with mailboxes will be delivered on some non-publisher thread;
* subscriptions without mailboxes will be delivered on the publisher thread.
* \param use_thread_pool Use the thread pool for the subscription. This is only
* \param use_task_pool Use the task pool for the subscription. This is only
* relevant if \c needs_mailbox is non-zero.
* \param file, lineno, func
* \return New \ref stasis_subscription object.
@@ -66,7 +66,7 @@ struct stasis_subscription *internal_stasis_subscribe(
stasis_subscription_cb callback,
void *data,
int needs_mailbox,
int use_thread_pool,
int use_task_pool,
const char *file,
int lineno,
const char *func);

View File

@@ -63,7 +63,7 @@ struct stasis_message_router *__stasis_message_router_create(
* \brief Create a new message router object.
*
* The subscription created for this message router will dispatch
* callbacks on a thread pool.
* callbacks on a task pool.
*
* \param topic Topic to subscribe route to.
*