From 414e9de14dfb556cb61a33e3ae7df9494d95ff29 Mon Sep 17 00:00:00 2001 From: Timo Kokkonen Date: Fri, 3 Sep 2010 20:36:40 +0300 Subject: [PATCH] Analyzer: Rename "in ram" column to "RSS" This is now more consistent with tools like top. Signed-off-by: Timo Kokkonen --- analyze.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; -- 2.44.0