summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorDwayne M. Hubbard <dwayne.hubbard@gmail.com>2007-04-11 19:11:32 +0000
committerDwayne M. Hubbard <dwayne.hubbard@gmail.com>2007-04-11 19:11:32 +0000
commit62256ee410915750eb4bbf249af1d418e0c0540e (patch)
tree82d331cb2b230277ba0c9e9b1a28128beb005c3c /include
parent6fc5c73f78be23df3b5660e2b60047ff8d299b98 (diff)
added option_minmemfree for use in asterisk.conf to specify the amount of minimum free memory prior to accepting calls. added CLI 'core show sysinfo' to display system information
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@61539 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'include')
-rw-r--r--include/asterisk/options.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/asterisk/options.h b/include/asterisk/options.h
index 5b6ffe0eb..27c53d926 100644
--- a/include/asterisk/options.h
+++ b/include/asterisk/options.h
@@ -113,6 +113,7 @@ extern int option_verbose;
extern int option_debug; /*!< Debugging */
extern int option_maxcalls; /*!< Maximum number of simultaneous channels */
extern double option_maxload;
+extern long option_minmemfree; /*!< Minimum amount of free system memory - stop accepting calls if free memory falls below this watermark */
extern char defaultlanguage[];
extern time_t ast_startuptime;