~ubuntu-branches/ubuntu/trusty/procps/trusty-proposed

« back to all changes in this revision

Viewing changes to free.c

  • Committer: Package Import Robot
  • Author(s): Matthias Klose
  • Date: 2014-01-06 15:28:04 UTC
  • mfrom: (2.1.27 sid)
  • Revision ID: package-import@ubuntu.com-20140106152804-ryhqa7ee39xock4f
Tags: 1:3.3.9-1ubuntu1
* Merge with Debian; remaining changes:
  - debian/sysctl.d (Ubuntu-specific):
    + 10-console-messages.conf: stop low-level kernel messages on console.
    + 10-kernel-hardening.conf: add the kptr_restrict setting
    + 10-keyboard.conf.powerpc: mouse button emulation on PowerPC.
    + 10-ipv6-privacy.conf: add a file to sysctl.d to apply the defaults
      for IPv6 privacy extensions for interfaces. (LP: #176125, #841353)
    + 10-link-restrictions.conf: even though the Ubuntu
      kernel is built with these defaults in place, we want to make sure
      that people running stock kernels don't miss out.
    + 10-magic-sysrq.conf: Disable most magic sysrq by default, allowing
      critical sync, remount, reboot functions. (LP: #194676, LP: #1025467)
    + 10-network-security.conf: enable rp_filter and SYN-flood protection.
    + 10-ptrace.conf: describe new PTRACE setting.
    + 10-zeropage.conf: safe mmap_min_addr value for graceful fall-back.
    + README: describe how this directory is supposed to work.
  - debian/upstart (Ubuntu-specific): upstart configuration to replace old
    style sysv init script
  - Fix cross build
  - ignore_eaccess.patch: If we get eaccess when opening a sysctl file for
    writing, don't error out.  Otherwise package upgrades can fail,
    especially in containers.  (LP: #1157643)
  - Build using dh-autoreconf, update libtool.m4.
  - Build-depend on pkg-config.

Show diffs side-by-side

added added

removed removed

Lines of Context:
73
73
        fprintf(out,
74
74
              _(" %s [options]\n"), program_invocation_short_name);
75
75
        fputs(USAGE_OPTIONS, out);
76
 
        fputs(_(" -b, --bytes         show output in bytes\n"
77
 
                " -k, --kilo          show output in kilobytes\n"
78
 
                " -m, --mega          show output in megabytes\n"
79
 
                " -g, --giga          show output in gigabytes\n"
80
 
                "     --tera          show output in terabytes\n"
81
 
                " -h, --human         show human readable output\n"
82
 
                "     --si            use powers of 1000 not 1024\n"
83
 
                " -l, --lohi          show detailed low and high memory statistics\n"
84
 
                " -o, --old           use old format (no -/+buffers/cache line)\n"
85
 
                " -t, --total         show total for RAM + swap\n"
86
 
                " -s N, --seconds N   repeat printing every N seconds\n"
87
 
                " -c N, --count N     repeat printing N times\n"), out);
 
76
        fputs(_(" -b, --bytes         show output in bytes\n"), out);
 
77
        fputs(_(" -k, --kilo          show output in kilobytes\n"), out);
 
78
        fputs(_(" -m, --mega          show output in megabytes\n"), out);
 
79
        fputs(_(" -g, --giga          show output in gigabytes\n"), out);
 
80
        fputs(_("     --tera          show output in terabytes\n"), out);
 
81
        fputs(_(" -h, --human         show human-readable output\n"), out);
 
82
        fputs(_("     --si            use powers of 1000 not 1024\n"), out);
 
83
        fputs(_(" -l, --lohi          show detailed low and high memory statistics\n"), out);
 
84
        fputs(_(" -o, --old           use old format (without -/+buffers/cache line)\n"), out);
 
85
        fputs(_(" -t, --total         show total for RAM + swap\n"), out);
 
86
        fputs(_(" -s N, --seconds N   repeat printing every N seconds\n"), out);
 
87
        fputs(_(" -c N, --count N     repeat printing N times, then exit\n"), out);
88
88
        fputs(USAGE_SEPARATOR, out);
89
 
        fputs(_("      --help    display this help text\n"), out);
 
89
        fputs(_("     --help     display this help and exit\n"), out);
90
90
        fputs(USAGE_VERSION, out);
91
91
        fprintf(out, USAGE_MAN_TAIL("free(1)"));
92
92