[svn-commits] dlee: branch dlee/stasis-config r393363 - in /team/dlee/stasis-config: includ...

SVN commits to the Digium repositories svn-commits at lists.digium.com
Mon Jul 1 16:25:19 CDT 2013


Author: dlee
Date: Mon Jul  1 16:25:17 2013
New Revision: 393363

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=393363
Log:
better name for stasis_config_get_threadpool

Modified:
    team/dlee/stasis-config/include/asterisk/stasis.h
    team/dlee/stasis-config/main/stasis.c
    team/dlee/stasis-config/main/stasis_config.c

Modified: team/dlee/stasis-config/include/asterisk/stasis.h
URL: http://svnview.digium.com/svn/asterisk/team/dlee/stasis-config/include/asterisk/stasis.h?view=diff&rev=393363&r1=393362&r2=393363
==============================================================================
--- team/dlee/stasis-config/include/asterisk/stasis.h (original)
+++ team/dlee/stasis-config/include/asterisk/stasis.h Mon Jul  1 16:25:17 2013
@@ -845,7 +845,7 @@
  * \brief Retrieves the Stasis threadpool configuration.
  * \param[out] threadpool_options Filled with Stasis threadpool options.
  */
-void stasis_config_get_threadpool(
+void stasis_config_get_threadpool_options(
 	struct ast_threadpool_options *threadpool_options);
 
 /*! @} */

Modified: team/dlee/stasis-config/main/stasis.c
URL: http://svnview.digium.com/svn/asterisk/team/dlee/stasis-config/main/stasis.c?view=diff&rev=393363&r1=393362&r2=393363
==============================================================================
--- team/dlee/stasis-config/main/stasis.c (original)
+++ team/dlee/stasis-config/main/stasis.c Mon Jul  1 16:25:17 2013
@@ -658,7 +658,7 @@
 		return -1;
 	}
 
-	stasis_config_get_threadpool(&opts);
+	stasis_config_get_threadpool_options(&opts);
 	ast_log(LOG_DEBUG, "Creating Stasis threadpool: initial_size = %d, max_size = %d, idle_timeout_secs = %d\n",
 		opts.initial_size, opts.max_size, opts.idle_timeout);
 	pool = ast_threadpool_create("stasis-core", NULL, &opts);

Modified: team/dlee/stasis-config/main/stasis_config.c
URL: http://svnview.digium.com/svn/asterisk/team/dlee/stasis-config/main/stasis_config.c?view=diff&rev=393363&r1=393362&r2=393363
==============================================================================
--- team/dlee/stasis-config/main/stasis_config.c (original)
+++ team/dlee/stasis-config/main/stasis_config.c Mon Jul  1 16:25:17 2013
@@ -125,7 +125,7 @@
 CONFIG_INFO_CORE("stasis", cfg_info, confs, conf_alloc,
 	.files = ACO_FILES(&conf_file));
 
-void stasis_config_get_threadpool(
+void stasis_config_get_threadpool_options(
 	struct ast_threadpool_options *threadpool_options)
 {
 	RAII_VAR(struct stasis_conf *, conf, NULL, ao2_cleanup);




More information about the svn-commits mailing list