summaryrefslogtreecommitdiff
path: root/main/pbx.c
diff options
context:
space:
mode:
authorJoshua Colp <jcolp@digium.com>2007-08-01 19:12:36 +0000
committerJoshua Colp <jcolp@digium.com>2007-08-01 19:12:36 +0000
commita7aaa0bbc2ba755d2a0ba13870044d4a9e1a7735 (patch)
treeba9ebb6e967132b447390b5e7b8e2450baae2982 /main/pbx.c
parente03296f7cbeb81014d16598c34336dd9f0d3f7d0 (diff)
Solaris does not have a sysinfo like we know of on Linux.
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@77876 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'main/pbx.c')
-rw-r--r--main/pbx.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/main/pbx.c b/main/pbx.c
index 419523db9..b2e6c7048 100644
--- a/main/pbx.c
+++ b/main/pbx.c
@@ -37,7 +37,7 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
#include <time.h>
#include <sys/time.h>
#include <limits.h>
-#if defined(HAVE_SYSINFO)
+#if defined(HAVE_SYSINFO) && !defined(SOLARIS)
#include <sys/sysinfo.h>
#endif
@@ -2536,7 +2536,7 @@ static int increase_call_count(const struct ast_channel *c)
{
int failed = 0;
double curloadavg;
-#if defined(HAVE_SYSINFO)
+#if defined(HAVE_SYSINFO) && !defined(SOLARIS)
long curfreemem;
struct sysinfo sys_info;
#endif
@@ -2555,7 +2555,7 @@ static int increase_call_count(const struct ast_channel *c)
failed = -1;
}
}
-#if defined(HAVE_SYSINFO)
+#if defined(HAVE_SYSINFO) && !defined(SOLARIS)
if (option_minmemfree) {
if (!sysinfo(&sys_info)) {
/* make sure that the free system memory is above the configured low watermark