Configuration for Stasis threadpool

The appropriate settings for the Stasis threadpool is very system
specific, depending upon both workload and system configuration.

This patch adds a stasis.conf file which can be used to configure the
key attributes of the threadpool for the Stasis message bus.

(closes issue ASTERISK-21280)
Review: https://reviewboard.asterisk.org/r/2651/


git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@393542 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
David M. Lee
2013-07-03 17:20:43 +00:00
parent 9ba976b19c
commit c4adaf9106
6 changed files with 241 additions and 23 deletions

View File

@@ -4202,6 +4202,13 @@ int main(int argc, char *argv[])
exit(1);
}
#ifdef AST_XML_DOCS
/* Load XML documentation. */
ast_xmldoc_load_documentation();
#endif
aco_init();
if (stasis_init()) {
printf("Stasis initialization failed.\n%s", term_quit());
exit(1);
@@ -4261,13 +4268,6 @@ int main(int argc, char *argv[])
exit(1);
}
#ifdef AST_XML_DOCS
/* Load XML documentation. */
ast_xmldoc_load_documentation();
#endif
aco_init();
if (app_init()) {
printf("App core initialization failed.\n%s", term_quit());
exit(1);