summaryrefslogtreecommitdiff
path: root/include/asterisk
diff options
context:
space:
mode:
authorJoshua Colp <jcolp@digium.com>2016-01-12 13:59:48 -0600
committerGerrit Code Review <gerrit2@gerrit.digium.api>2016-01-12 13:59:49 -0600
commitd8f8cf54622b5519c894cf3a0e1a4fc7ab1c7f77 (patch)
tree22b1f703c034cf26f35cda2bf51cbac47316c63d /include/asterisk
parentd9840023ceca1bd68966ded92e00209aa7eb4a1c (diff)
parent0bca2a5c26bae18dadc368e22dbbeae6b61c5cd7 (diff)
Merge "res_pjsip: Create human friendly serializer names."
Diffstat (limited to 'include/asterisk')
-rw-r--r--include/asterisk/res_pjsip.h10
1 files changed, 7 insertions, 3 deletions
diff --git a/include/asterisk/res_pjsip.h b/include/asterisk/res_pjsip.h
index d9123f983..df13af699 100644
--- a/include/asterisk/res_pjsip.h
+++ b/include/asterisk/res_pjsip.h
@@ -1106,32 +1106,36 @@ struct ast_sip_endpoint *ast_sip_get_artificial_endpoint(void);
/*!
* \brief Create a new serializer for SIP tasks
+ * \since 13.8.0
*
* See \ref ast_threadpool_serializer for more information on serializers.
* SIP creates serializers so that tasks operating on similar data will run
* in sequence.
*
+ * \param name Name of the serializer. (must be unique)
+ *
* \retval NULL Failure
* \retval non-NULL Newly-created serializer
*/
-struct ast_taskprocessor *ast_sip_create_serializer(void);
+struct ast_taskprocessor *ast_sip_create_serializer(const char *name);
struct ast_serializer_shutdown_group;
/*!
* \brief Create a new serializer for SIP tasks
- * \since 13.5.0
+ * \since 13.8.0
*
* See \ref ast_threadpool_serializer for more information on serializers.
* SIP creates serializers so that tasks operating on similar data will run
* in sequence.
*
+ * \param name Name of the serializer. (must be unique)
* \param shutdown_group Group shutdown controller. (NULL if no group association)
*
* \retval NULL Failure
* \retval non-NULL Newly-created serializer
*/
-struct ast_taskprocessor *ast_sip_create_serializer_group(struct ast_serializer_shutdown_group *shutdown_group);
+struct ast_taskprocessor *ast_sip_create_serializer_group(const char *name, struct ast_serializer_shutdown_group *shutdown_group);
/*!
* \brief Set a serializer on a SIP dialog so requests and responses are automatically serialized