2011-04-18 23:00:20 +05:30
|
|
|
/*
|
|
|
|
* free.c - free(1)
|
2011-06-04 23:10:29 +05:30
|
|
|
* procps-ng utility to display free memory information
|
2011-04-18 23:00:20 +05:30
|
|
|
*
|
2012-03-02 17:59:36 +05:30
|
|
|
* Copyright (C) 1992-2012
|
|
|
|
*
|
2011-04-18 23:00:20 +05:30
|
|
|
* Mostly new, Sami Kerola <kerolasa@iki.fi> 15 Apr 2011
|
|
|
|
* All new, Robert Love <rml@tech9.net> 18 Nov 2002
|
|
|
|
* Original by Brian Edmonds and Rafal Maszkowski 14 Dec 1992
|
|
|
|
*
|
|
|
|
* Copyright 2003 Robert Love
|
|
|
|
* Copyright 2004 Albert Cahalan
|
2012-03-02 17:59:36 +05:30
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
2011-04-18 23:00:20 +05:30
|
|
|
*/
|
2011-11-03 16:07:10 +05:30
|
|
|
|
2012-01-04 04:23:51 +05:30
|
|
|
#include "config.h"
|
2011-10-09 01:54:06 +05:30
|
|
|
#include "c.h"
|
|
|
|
#include "nls.h"
|
2012-01-04 04:23:51 +05:30
|
|
|
#include "strutils.h"
|
2012-03-23 18:02:24 +05:30
|
|
|
#include "fileutils.h"
|
2011-10-09 01:54:06 +05:30
|
|
|
|
2011-11-03 16:07:10 +05:30
|
|
|
#include <locale.h>
|
2011-04-18 23:00:20 +05:30
|
|
|
#include <errno.h>
|
|
|
|
#include <limits.h>
|
|
|
|
#include <ctype.h>
|
2004-01-30 10:17:14 +05:30
|
|
|
#include <getopt.h>
|
2002-02-02 04:17:29 +05:30
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
2016-04-16 12:33:57 +05:30
|
|
|
#include <proc/procps.h>
|
2015-06-23 17:52:50 +05:30
|
|
|
|
2011-04-18 23:00:20 +05:30
|
|
|
#ifndef SIZE_MAX
|
|
|
|
#define SIZE_MAX 32
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define FREE_HUMANREADABLE (1 << 1)
|
|
|
|
#define FREE_LOHI (1 << 2)
|
2014-07-30 01:01:46 +05:30
|
|
|
#define FREE_WIDE (1 << 3)
|
2011-04-18 23:00:20 +05:30
|
|
|
#define FREE_TOTAL (1 << 4)
|
|
|
|
#define FREE_SI (1 << 5)
|
|
|
|
#define FREE_REPEAT (1 << 6)
|
|
|
|
#define FREE_REPEATCOUNT (1 << 7)
|
|
|
|
|
|
|
|
struct commandline_arguments {
|
|
|
|
int exponent; /* demanded in kilos, magas... */
|
|
|
|
float repeat_interval; /* delay in seconds */
|
|
|
|
int repeat_counter; /* number of repeats */
|
|
|
|
};
|
|
|
|
|
|
|
|
/* function prototypes */
|
|
|
|
static void usage(FILE * out);
|
|
|
|
double power(unsigned int base, unsigned int expo);
|
|
|
|
static const char *scale_size(unsigned long size, int flags, struct commandline_arguments args);
|
|
|
|
|
|
|
|
static void __attribute__ ((__noreturn__))
|
|
|
|
usage(FILE * out)
|
|
|
|
{
|
2011-10-09 01:54:06 +05:30
|
|
|
fputs(USAGE_HEADER, out);
|
2011-04-18 23:00:20 +05:30
|
|
|
fprintf(out,
|
2011-10-09 01:54:06 +05:30
|
|
|
_(" %s [options]\n"), program_invocation_short_name);
|
|
|
|
fputs(USAGE_OPTIONS, out);
|
2013-10-10 04:26:44 +05:30
|
|
|
fputs(_(" -b, --bytes show output in bytes\n"), out);
|
2015-04-03 13:48:58 +05:30
|
|
|
fputs(_(" --kilo show output in kilobytes\n"), out);
|
|
|
|
fputs(_(" --mega show output in megabytes\n"), out);
|
|
|
|
fputs(_(" --giga show output in gigabytes\n"), out);
|
2013-10-10 04:26:44 +05:30
|
|
|
fputs(_(" --tera show output in terabytes\n"), out);
|
2015-04-03 13:48:58 +05:30
|
|
|
fputs(_(" --peta show output in petabytes\n"), out);
|
|
|
|
fputs(_(" -k, --kibi show output in kibibytes\n"), out);
|
|
|
|
fputs(_(" -m, --mebi show output in mebibytes\n"), out);
|
|
|
|
fputs(_(" -g, --gibi show output in gibibytes\n"), out);
|
|
|
|
fputs(_(" --tebi show output in tebibytes\n"), out);
|
|
|
|
fputs(_(" --pebi show output in pebibytes\n"), out);
|
2013-10-10 04:26:44 +05:30
|
|
|
fputs(_(" -h, --human show human-readable output\n"), out);
|
|
|
|
fputs(_(" --si use powers of 1000 not 1024\n"), out);
|
|
|
|
fputs(_(" -l, --lohi show detailed low and high memory statistics\n"), out);
|
|
|
|
fputs(_(" -t, --total show total for RAM + swap\n"), out);
|
|
|
|
fputs(_(" -s N, --seconds N repeat printing every N seconds\n"), out);
|
|
|
|
fputs(_(" -c N, --count N repeat printing N times, then exit\n"), out);
|
2014-07-30 00:53:19 +05:30
|
|
|
fputs(_(" -w, --wide wide output\n"), out);
|
2011-10-09 01:54:06 +05:30
|
|
|
fputs(USAGE_SEPARATOR, out);
|
2013-10-10 04:26:44 +05:30
|
|
|
fputs(_(" --help display this help and exit\n"), out);
|
2011-10-09 01:54:06 +05:30
|
|
|
fputs(USAGE_VERSION, out);
|
|
|
|
fprintf(out, USAGE_MAN_TAIL("free(1)"));
|
2011-04-18 23:00:20 +05:30
|
|
|
|
|
|
|
exit(out == stderr ? EXIT_FAILURE : EXIT_SUCCESS);
|
|
|
|
}
|
|
|
|
|
|
|
|
double power(unsigned int base, unsigned int expo)
|
|
|
|
{
|
|
|
|
return (expo == 0) ? 1 : base * power(base, expo - 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* idea of this function is copied from top size scaling */
|
|
|
|
static const char *scale_size(unsigned long size, int flags, struct commandline_arguments args)
|
|
|
|
{
|
2015-04-03 13:48:58 +05:30
|
|
|
static char nextup[] = { 'B', 'K', 'M', 'G', 'T', 'P', 0 };
|
2011-10-09 01:54:06 +05:30
|
|
|
static char buf[BUFSIZ];
|
2011-04-18 23:00:20 +05:30
|
|
|
int i;
|
|
|
|
char *up;
|
|
|
|
float base;
|
|
|
|
|
|
|
|
if (flags & FREE_SI)
|
|
|
|
base = 1000.0;
|
|
|
|
else
|
|
|
|
base = 1024.0;
|
|
|
|
|
|
|
|
/* default output */
|
|
|
|
if (args.exponent == 0 && !(flags & FREE_HUMANREADABLE)) {
|
|
|
|
snprintf(buf, sizeof(buf), "%ld", size);
|
|
|
|
return buf;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!(flags & FREE_HUMANREADABLE)) {
|
|
|
|
if (args.exponent == 1) {
|
|
|
|
/* in bytes, which can not be in SI */
|
2012-06-26 18:36:45 +05:30
|
|
|
snprintf(buf, sizeof(buf), "%lld", ((long long int)size) * 1024);
|
2011-04-18 23:00:20 +05:30
|
|
|
return buf;
|
|
|
|
}
|
2016-11-04 06:39:58 +05:30
|
|
|
if (args.exponent > 1) {
|
2011-04-18 23:00:20 +05:30
|
|
|
/* In desired scale. */
|
|
|
|
snprintf(buf, sizeof(buf), "%ld",
|
2018-04-11 10:30:00 +05:30
|
|
|
(long int)((size * 1024.0) / power(base, args.exponent-1))
|
2011-04-18 23:00:20 +05:30
|
|
|
);
|
|
|
|
return buf;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* human readable output */
|
|
|
|
up = nextup;
|
2015-10-24 07:47:36 +05:30
|
|
|
for (i = 1; up[0] != 0; i++, up++) {
|
2011-04-18 23:00:20 +05:30
|
|
|
switch (i) {
|
|
|
|
case 1:
|
|
|
|
if (4 >= snprintf(buf, sizeof(buf), "%ld%c", (long)size * 1024, *up))
|
|
|
|
return buf;
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
case 3:
|
|
|
|
case 4:
|
|
|
|
case 5:
|
2015-04-03 13:48:58 +05:30
|
|
|
case 6:
|
2016-11-04 06:41:01 +05:30
|
|
|
if (!(flags & FREE_SI)) {
|
|
|
|
if (5 >=
|
|
|
|
snprintf(buf, sizeof(buf), "%.1f%ci",
|
|
|
|
(float)((size / 1024) * base / power(base, i - 2)), *up))
|
|
|
|
return buf;
|
|
|
|
if (5 >=
|
|
|
|
snprintf(buf, sizeof(buf), "%ld%ci",
|
|
|
|
(long)((size / 1024) * base / power(base, i - 2)), *up))
|
|
|
|
return buf;
|
|
|
|
} else {
|
|
|
|
if (4 >=
|
|
|
|
snprintf(buf, sizeof(buf), "%.1f%c",
|
|
|
|
(float)((size / 1024) * base / power(base, i - 2)), *up))
|
|
|
|
return buf;
|
|
|
|
if (4 >=
|
|
|
|
snprintf(buf, sizeof(buf), "%ld%c",
|
|
|
|
(long)((size / 1024) * base / power(base, i - 2)), *up))
|
|
|
|
return buf;
|
|
|
|
}
|
2011-04-18 23:00:20 +05:30
|
|
|
break;
|
2015-04-03 13:48:58 +05:30
|
|
|
case 7:
|
2011-04-18 23:00:20 +05:30
|
|
|
break;
|
|
|
|
}
|
2002-02-02 04:17:29 +05:30
|
|
|
}
|
2011-04-18 23:00:20 +05:30
|
|
|
/*
|
2015-04-03 13:48:58 +05:30
|
|
|
* On system where there is more than exbibyte of memory or swap the
|
2011-04-18 23:00:20 +05:30
|
|
|
* output does not fit to column. For incoming few years this should
|
2015-04-03 13:48:58 +05:30
|
|
|
* not be a big problem (wrote at Apr, 2015).
|
2011-04-18 23:00:20 +05:30
|
|
|
*/
|
|
|
|
return buf;
|
|
|
|
}
|
|
|
|
|
2015-04-03 13:48:58 +05:30
|
|
|
static void check_unit_set(int *unit_set)
|
|
|
|
{
|
|
|
|
if (*unit_set)
|
|
|
|
xerrx(EXIT_FAILURE,
|
|
|
|
_("Multiple unit options doesn't make sense."));
|
|
|
|
*unit_set = 1;
|
|
|
|
}
|
|
|
|
|
2011-04-18 23:00:20 +05:30
|
|
|
int main(int argc, char **argv)
|
|
|
|
{
|
2015-04-03 13:48:58 +05:30
|
|
|
int c, flags = 0, unit_set = 0;
|
2011-04-18 23:00:20 +05:30
|
|
|
struct commandline_arguments args;
|
2016-07-21 10:30:00 +05:30
|
|
|
struct meminfo_info *mem_info = NULL;
|
2011-04-18 23:00:20 +05:30
|
|
|
|
|
|
|
/*
|
|
|
|
* For long options that have no equivalent short option, use a
|
|
|
|
* non-character as a pseudo short option, starting with CHAR_MAX + 1.
|
|
|
|
*/
|
|
|
|
enum {
|
|
|
|
SI_OPTION = CHAR_MAX + 1,
|
2015-04-03 13:48:58 +05:30
|
|
|
KILO_OPTION,
|
|
|
|
MEGA_OPTION,
|
|
|
|
GIGA_OPTION,
|
2011-04-18 23:00:20 +05:30
|
|
|
TERA_OPTION,
|
2015-04-03 13:48:58 +05:30
|
|
|
PETA_OPTION,
|
|
|
|
TEBI_OPTION,
|
|
|
|
PEBI_OPTION,
|
2011-04-18 23:00:20 +05:30
|
|
|
HELP_OPTION
|
|
|
|
};
|
|
|
|
|
|
|
|
static const struct option longopts[] = {
|
|
|
|
{ "bytes", no_argument, NULL, 'b' },
|
2015-04-03 13:48:58 +05:30
|
|
|
{ "kilo", no_argument, NULL, KILO_OPTION },
|
|
|
|
{ "mega", no_argument, NULL, MEGA_OPTION },
|
|
|
|
{ "giga", no_argument, NULL, GIGA_OPTION },
|
2011-04-18 23:00:20 +05:30
|
|
|
{ "tera", no_argument, NULL, TERA_OPTION },
|
2015-04-03 13:48:58 +05:30
|
|
|
{ "peta", no_argument, NULL, PETA_OPTION },
|
|
|
|
{ "kibi", no_argument, NULL, 'k' },
|
|
|
|
{ "mebi", no_argument, NULL, 'm' },
|
|
|
|
{ "gibi", no_argument, NULL, 'g' },
|
|
|
|
{ "tebi", no_argument, NULL, TEBI_OPTION },
|
|
|
|
{ "pebi", no_argument, NULL, PEBI_OPTION },
|
2011-04-18 23:00:20 +05:30
|
|
|
{ "human", no_argument, NULL, 'h' },
|
|
|
|
{ "si", no_argument, NULL, SI_OPTION },
|
|
|
|
{ "lohi", no_argument, NULL, 'l' },
|
|
|
|
{ "total", no_argument, NULL, 't' },
|
|
|
|
{ "seconds", required_argument, NULL, 's' },
|
|
|
|
{ "count", required_argument, NULL, 'c' },
|
2014-07-30 00:53:19 +05:30
|
|
|
{ "wide", no_argument, NULL, 'w' },
|
2011-04-18 23:00:20 +05:30
|
|
|
{ "help", no_argument, NULL, HELP_OPTION },
|
|
|
|
{ "version", no_argument, NULL, 'V' },
|
|
|
|
{ NULL, 0, NULL, 0 }
|
|
|
|
};
|
|
|
|
|
2014-07-30 01:01:46 +05:30
|
|
|
/* defaults */
|
2011-04-18 23:00:20 +05:30
|
|
|
args.exponent = 0;
|
|
|
|
args.repeat_interval = 1000000;
|
2011-09-24 12:11:26 +05:30
|
|
|
args.repeat_counter = 0;
|
2011-04-18 23:00:20 +05:30
|
|
|
|
2013-02-20 23:01:48 +05:30
|
|
|
#ifdef HAVE_PROGRAM_INVOCATION_NAME
|
|
|
|
program_invocation_name = program_invocation_short_name;
|
|
|
|
#endif
|
2011-11-03 16:07:10 +05:30
|
|
|
setlocale (LC_ALL, "");
|
|
|
|
bindtextdomain(PACKAGE, LOCALEDIR);
|
|
|
|
textdomain(PACKAGE);
|
2012-03-23 18:02:24 +05:30
|
|
|
atexit(close_stdout);
|
2011-11-03 16:07:10 +05:30
|
|
|
|
2014-07-30 01:01:46 +05:30
|
|
|
while ((c = getopt_long(argc, argv, "bkmghltc:ws:V", longopts, NULL)) != -1)
|
2011-04-18 23:00:20 +05:30
|
|
|
switch (c) {
|
|
|
|
case 'b':
|
2015-04-03 13:48:58 +05:30
|
|
|
check_unit_set(&unit_set);
|
2011-04-18 23:00:20 +05:30
|
|
|
args.exponent = 1;
|
|
|
|
break;
|
|
|
|
case 'k':
|
2015-04-03 13:48:58 +05:30
|
|
|
check_unit_set(&unit_set);
|
2011-04-18 23:00:20 +05:30
|
|
|
args.exponent = 2;
|
|
|
|
break;
|
|
|
|
case 'm':
|
2015-04-03 13:48:58 +05:30
|
|
|
check_unit_set(&unit_set);
|
2011-04-18 23:00:20 +05:30
|
|
|
args.exponent = 3;
|
|
|
|
break;
|
|
|
|
case 'g':
|
2015-04-03 13:48:58 +05:30
|
|
|
check_unit_set(&unit_set);
|
|
|
|
args.exponent = 4;
|
|
|
|
break;
|
|
|
|
case TEBI_OPTION:
|
|
|
|
check_unit_set(&unit_set);
|
|
|
|
args.exponent = 5;
|
|
|
|
break;
|
|
|
|
case PEBI_OPTION:
|
|
|
|
check_unit_set(&unit_set);
|
|
|
|
args.exponent = 6;
|
|
|
|
break;
|
|
|
|
case KILO_OPTION:
|
|
|
|
check_unit_set(&unit_set);
|
|
|
|
args.exponent = 2;
|
|
|
|
flags |= FREE_SI;
|
|
|
|
break;
|
|
|
|
case MEGA_OPTION:
|
|
|
|
check_unit_set(&unit_set);
|
|
|
|
args.exponent = 3;
|
|
|
|
flags |= FREE_SI;
|
|
|
|
break;
|
|
|
|
case GIGA_OPTION:
|
|
|
|
check_unit_set(&unit_set);
|
2011-04-18 23:00:20 +05:30
|
|
|
args.exponent = 4;
|
2015-04-03 13:48:58 +05:30
|
|
|
flags |= FREE_SI;
|
2011-04-18 23:00:20 +05:30
|
|
|
break;
|
|
|
|
case TERA_OPTION:
|
2015-04-03 13:48:58 +05:30
|
|
|
check_unit_set(&unit_set);
|
2011-04-18 23:00:20 +05:30
|
|
|
args.exponent = 5;
|
2015-04-03 13:48:58 +05:30
|
|
|
flags |= FREE_SI;
|
|
|
|
break;
|
|
|
|
case PETA_OPTION:
|
|
|
|
check_unit_set(&unit_set);
|
|
|
|
args.exponent = 6;
|
|
|
|
flags |= FREE_SI;
|
2011-04-18 23:00:20 +05:30
|
|
|
break;
|
|
|
|
case 'h':
|
|
|
|
flags |= FREE_HUMANREADABLE;
|
|
|
|
break;
|
|
|
|
case SI_OPTION:
|
|
|
|
flags |= FREE_SI;
|
|
|
|
break;
|
|
|
|
case 'l':
|
|
|
|
flags |= FREE_LOHI;
|
|
|
|
break;
|
|
|
|
case 't':
|
|
|
|
flags |= FREE_TOTAL;
|
|
|
|
break;
|
|
|
|
case 's':
|
|
|
|
flags |= FREE_REPEAT;
|
2015-08-08 16:34:01 +05:30
|
|
|
errno = 0;
|
2016-07-03 11:44:36 +05:30
|
|
|
args.repeat_interval = (1000000 * strtod_nol_or_err(optarg, "seconds argument failed"));
|
2011-04-18 23:00:20 +05:30
|
|
|
if (args.repeat_interval < 1)
|
2012-01-03 13:18:43 +05:30
|
|
|
xerrx(EXIT_FAILURE,
|
2011-10-09 01:54:06 +05:30
|
|
|
_("seconds argument `%s' is not positive number"), optarg);
|
2011-04-18 23:00:20 +05:30
|
|
|
break;
|
|
|
|
case 'c':
|
|
|
|
flags |= FREE_REPEAT;
|
|
|
|
flags |= FREE_REPEATCOUNT;
|
2012-01-04 04:23:51 +05:30
|
|
|
args.repeat_counter = strtol_or_err(optarg,
|
|
|
|
_("failed to parse count argument"));
|
2012-02-26 16:56:59 +05:30
|
|
|
if (args.repeat_counter < 1)
|
2012-01-04 04:23:51 +05:30
|
|
|
error(EXIT_FAILURE, ERANGE,
|
|
|
|
_("failed to parse count argument: '%s'"), optarg);
|
2011-04-18 23:00:20 +05:30
|
|
|
break;
|
2014-07-30 00:53:19 +05:30
|
|
|
case 'w':
|
|
|
|
flags |= FREE_WIDE;
|
2014-07-12 02:04:06 +05:30
|
|
|
break;
|
2011-04-18 23:00:20 +05:30
|
|
|
case HELP_OPTION:
|
|
|
|
usage(stdout);
|
|
|
|
case 'V':
|
2011-10-09 01:54:06 +05:30
|
|
|
printf(PROCPS_NG_VERSION);
|
2011-04-18 23:00:20 +05:30
|
|
|
exit(EXIT_SUCCESS);
|
|
|
|
default:
|
|
|
|
usage(stderr);
|
|
|
|
}
|
|
|
|
|
2015-06-23 17:52:50 +05:30
|
|
|
if (procps_meminfo_new(&mem_info) < 0)
|
|
|
|
xerrx(EXIT_FAILURE,
|
|
|
|
_("Unable to create meminfo structure"));
|
2011-04-18 23:00:20 +05:30
|
|
|
do {
|
2011-12-17 23:02:47 +05:30
|
|
|
/* Translation Hint: You can use 9 character words in
|
|
|
|
* the header, and the words need to be right align to
|
|
|
|
* beginning of a number. */
|
2014-07-30 00:53:19 +05:30
|
|
|
if (flags & FREE_WIDE) {
|
2014-08-20 16:51:22 +05:30
|
|
|
printf(_(" total used free shared buffers cache available"));
|
2014-07-30 00:53:19 +05:30
|
|
|
} else {
|
2014-08-20 16:51:22 +05:30
|
|
|
printf(_(" total used free shared buff/cache available"));
|
2014-07-30 00:53:19 +05:30
|
|
|
}
|
2014-07-12 02:04:06 +05:30
|
|
|
printf("\n");
|
2011-10-09 01:54:06 +05:30
|
|
|
printf("%-7s", _("Mem:"));
|
2016-07-21 10:30:00 +05:30
|
|
|
printf(" %11s", scale_size(MEMINFO_GET(mem_info, MEMINFO_MEM_TOTAL, ul_int), flags, args));
|
|
|
|
printf(" %11s", scale_size(MEMINFO_GET(mem_info, MEMINFO_MEM_USED, ul_int), flags, args));
|
|
|
|
printf(" %11s", scale_size(MEMINFO_GET(mem_info, MEMINFO_MEM_FREE, ul_int), flags, args));
|
|
|
|
printf(" %11s", scale_size(MEMINFO_GET(mem_info, MEMINFO_MEM_SHARED, ul_int), flags, args));
|
2014-07-30 00:53:19 +05:30
|
|
|
if (flags & FREE_WIDE) {
|
2016-07-21 10:30:00 +05:30
|
|
|
printf(" %11s", scale_size(MEMINFO_GET(mem_info, MEMINFO_MEM_BUFFERS, ul_int),
|
2015-06-23 17:52:50 +05:30
|
|
|
flags, args));
|
2017-05-29 12:52:22 +05:30
|
|
|
printf(" %11s", scale_size(MEMINFO_GET(mem_info, MEMINFO_MEM_CACHED_ALL, ul_int)
|
2015-06-23 17:52:50 +05:30
|
|
|
, flags, args));
|
2014-07-30 00:53:19 +05:30
|
|
|
} else {
|
2016-07-21 10:30:00 +05:30
|
|
|
printf(" %11s", scale_size(MEMINFO_GET(mem_info, MEMINFO_MEM_BUFFERS, ul_int) +
|
2017-05-29 12:52:22 +05:30
|
|
|
MEMINFO_GET(mem_info, MEMINFO_MEM_CACHED_ALL, ul_int), flags, args));
|
2014-07-30 00:53:19 +05:30
|
|
|
}
|
2016-07-21 10:30:00 +05:30
|
|
|
printf(" %11s", scale_size(MEMINFO_GET(mem_info, MEMINFO_MEM_AVAILABLE, ul_int), flags, args));
|
2011-04-18 23:00:20 +05:30
|
|
|
printf("\n");
|
|
|
|
/*
|
|
|
|
* Print low vs. high information, if the user requested it.
|
|
|
|
* Note we check if low_total == 0: if so, then this kernel
|
|
|
|
* does not export the low and high stats. Note we still want
|
|
|
|
* to print the high info, even if it is zero.
|
|
|
|
*/
|
|
|
|
if (flags & FREE_LOHI) {
|
2011-10-09 01:54:06 +05:30
|
|
|
printf("%-7s", _("Low:"));
|
2016-07-21 10:30:00 +05:30
|
|
|
printf(" %11s", scale_size(MEMINFO_GET(mem_info, MEMINFO_MEMLO_TOTAL, ul_int), flags, args));
|
|
|
|
printf(" %11s", scale_size(MEMINFO_GET(mem_info, MEMINFO_MEMLO_USED, ul_int), flags, args));
|
|
|
|
printf(" %11s", scale_size(MEMINFO_GET(mem_info, MEMINFO_MEMLO_FREE, ul_int), flags, args));
|
2011-04-18 23:00:20 +05:30
|
|
|
printf("\n");
|
|
|
|
|
2011-10-09 01:54:06 +05:30
|
|
|
printf("%-7s", _("High:"));
|
2016-07-21 10:30:00 +05:30
|
|
|
printf(" %11s", scale_size(MEMINFO_GET(mem_info, MEMINFO_MEMHI_TOTAL, ul_int), flags, args));
|
|
|
|
printf(" %11s", scale_size(MEMINFO_GET(mem_info, MEMINFO_MEMHI_USED, ul_int), flags, args));
|
|
|
|
printf(" %11s", scale_size(MEMINFO_GET(mem_info, MEMINFO_MEMHI_FREE, ul_int), flags, args));
|
2011-04-18 23:00:20 +05:30
|
|
|
printf("\n");
|
|
|
|
}
|
|
|
|
|
2011-10-09 01:54:06 +05:30
|
|
|
printf("%-7s", _("Swap:"));
|
2016-07-21 10:30:00 +05:30
|
|
|
printf(" %11s", scale_size(MEMINFO_GET(mem_info, MEMINFO_SWAP_TOTAL, ul_int), flags, args));
|
|
|
|
printf(" %11s", scale_size(MEMINFO_GET(mem_info, MEMINFO_SWAP_USED, ul_int), flags, args));
|
|
|
|
printf(" %11s", scale_size(MEMINFO_GET(mem_info, MEMINFO_SWAP_FREE, ul_int), flags, args));
|
2011-04-18 23:00:20 +05:30
|
|
|
printf("\n");
|
|
|
|
|
|
|
|
if (flags & FREE_TOTAL) {
|
2011-10-09 01:54:06 +05:30
|
|
|
printf("%-7s", _("Total:"));
|
2015-06-23 17:52:50 +05:30
|
|
|
printf(" %11s", scale_size(
|
2016-07-21 10:30:00 +05:30
|
|
|
MEMINFO_GET(mem_info, MEMINFO_MEM_TOTAL, ul_int) +
|
|
|
|
MEMINFO_GET(mem_info, MEMINFO_SWAP_TOTAL, ul_int), flags, args));
|
2015-06-23 17:52:50 +05:30
|
|
|
printf(" %11s", scale_size(
|
2016-07-21 10:30:00 +05:30
|
|
|
MEMINFO_GET(mem_info, MEMINFO_MEM_USED, ul_int) +
|
|
|
|
MEMINFO_GET(mem_info, MEMINFO_SWAP_USED, ul_int), flags, args));
|
2015-06-23 17:52:50 +05:30
|
|
|
printf(" %11s", scale_size(
|
2016-07-21 10:30:00 +05:30
|
|
|
MEMINFO_GET(mem_info, MEMINFO_MEM_FREE, ul_int) +
|
|
|
|
MEMINFO_GET(mem_info, MEMINFO_SWAP_FREE, ul_int), flags, args));
|
2011-04-18 23:00:20 +05:30
|
|
|
printf("\n");
|
|
|
|
}
|
|
|
|
fflush(stdout);
|
|
|
|
if (flags & FREE_REPEATCOUNT) {
|
|
|
|
args.repeat_counter--;
|
|
|
|
if (args.repeat_counter < 1)
|
|
|
|
exit(EXIT_SUCCESS);
|
|
|
|
}
|
|
|
|
if (flags & FREE_REPEAT) {
|
|
|
|
printf("\n");
|
|
|
|
usleep(args.repeat_interval);
|
|
|
|
}
|
|
|
|
} while ((flags & FREE_REPEAT));
|
2002-02-02 04:17:29 +05:30
|
|
|
|
2011-04-18 23:00:20 +05:30
|
|
|
exit(EXIT_SUCCESS);
|
2002-02-02 04:17:29 +05:30
|
|
|
}
|