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
This commit is contained in:
Joshua Colp
2007-08-01 19:12:36 +00:00
parent e03296f7cb
commit a7aaa0bbc2
2 changed files with 10 additions and 10 deletions

View File

@@ -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