mirror of
https://github.com/asterisk/asterisk.git
synced 2025-11-02 03:48:02 +00:00
Only report swap on platforms which can examine those statistics
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@266337 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -570,7 +570,8 @@ static int swapmode(int *used, int *total)
|
|||||||
static char *handle_show_sysinfo(struct ast_cli_entry *e, int cmd, struct ast_cli_args *a)
|
static char *handle_show_sysinfo(struct ast_cli_entry *e, int cmd, struct ast_cli_args *a)
|
||||||
{
|
{
|
||||||
uint64_t physmem, freeram;
|
uint64_t physmem, freeram;
|
||||||
uint64_t totalswap = 0, freeswap = 0;
|
uint64_t freeswap = 0;
|
||||||
|
int totalswap = 0;
|
||||||
int nprocs = 0;
|
int nprocs = 0;
|
||||||
long uptime = 0;
|
long uptime = 0;
|
||||||
#if defined(HAVE_SYSINFO)
|
#if defined(HAVE_SYSINFO)
|
||||||
@@ -655,8 +656,10 @@ static char *handle_show_sysinfo(struct ast_cli_entry *e, int cmd, struct ast_cl
|
|||||||
#if defined(HAVE_SYSINFO)
|
#if defined(HAVE_SYSINFO)
|
||||||
ast_cli(a->fd, " Buffer RAM: %" PRIu64 " KiB\n", ((uint64_t) sys_info.bufferram * sys_info.mem_unit) / 1024);
|
ast_cli(a->fd, " Buffer RAM: %" PRIu64 " KiB\n", ((uint64_t) sys_info.bufferram * sys_info.mem_unit) / 1024);
|
||||||
#endif
|
#endif
|
||||||
ast_cli(a->fd, " Total Swap Space: %" PRIu64 " KiB\n", totalswap);
|
#if defined (HAVE_SYSCTL) && defined(HAVE_SWAPCTL)
|
||||||
|
ast_cli(a->fd, " Total Swap Space: %u KiB\n", totalswap);
|
||||||
ast_cli(a->fd, " Free Swap Space: %" PRIu64 " KiB\n\n", freeswap);
|
ast_cli(a->fd, " Free Swap Space: %" PRIu64 " KiB\n\n", freeswap);
|
||||||
|
#endif
|
||||||
ast_cli(a->fd, " Number of Processes: %d \n\n", nprocs);
|
ast_cli(a->fd, " Number of Processes: %d \n\n", nprocs);
|
||||||
return CLI_SUCCESS;
|
return CLI_SUCCESS;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user