aboutsummaryrefslogtreecommitdiffstats
path: root/include/asterisk
diff options
context:
space:
mode:
authordhubbard <dhubbard@f38db490-d61c-443f-a65b-d21fe96a405b>2007-04-11 19:11:32 +0000
committerdhubbard <dhubbard@f38db490-d61c-443f-a65b-d21fe96a405b>2007-04-11 19:11:32 +0000
commit749bc01b9724dec98e815e7f479fbe3ba4a9fc0e (patch)
tree82d331cb2b230277ba0c9e9b1a28128beb005c3c /include/asterisk
parent27bd894678036ae796cb66a4fa6bad055f3e4833 (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: http://svn.digium.com/svn/asterisk/trunk@61539 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'include/asterisk')
-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;