From: Timo Kokkonen Date: Fri, 3 Sep 2010 17:36:40 +0000 (+0300) Subject: Analyzer: Rename "in ram" column to "RSS" X-Git-Url: http://git.itanic.dy.fi/?p=scan-pagemap;a=commitdiff_plain;h=414e9de14dfb556cb61a33e3ae7df9494d95ff29 Analyzer: Rename "in ram" column to "RSS" This is now more consistent with tools like top. Signed-off-by: Timo Kokkonen --- diff --git a/analyze.c b/analyze.c index 9364c47..163b001 100644 --- a/analyze.c +++ b/analyze.c @@ -215,7 +215,7 @@ void print_pid_stats(struct pageframe *pf, struct process *process_list, biggest = MAX(biggest, ps->pages_present + ps->pages_swapped); } - printf(" in ram swapped total pid"); + printf(" RSS swapped total pid"); if (opts->with_threads) printf(" tid"); printf(" name\n"); @@ -297,7 +297,7 @@ static void _dump_process_maps(struct pageframe *pf, struct process *ps, } printf("process: [%d] %s\n", ps->pid, ps->name); - printf(" size in ram swapped total name\n"); + printf(" size RSS swapped total name\n"); restart: second_biggest = 0; count = 0;