diff options
author | Siri Hansen <[email protected]> | 2013-05-21 16:15:12 +0200 |
---|---|---|
committer | Siri Hansen <[email protected]> | 2013-05-21 16:20:32 +0200 |
commit | f2f29ac19a18b4870bc4b8b5eaa5e04ecabbcdb5 (patch) | |
tree | 048e384b8e55f2cec89bcedc1c731882210c7fd1 /lib/observer/src/crashdump_viewer.hrl | |
parent | 1611ef713c832ab24f1d077a0ad31e5676882389 (diff) | |
download | otp-f2f29ac19a18b4870bc4b8b5eaa5e04ecabbcdb5.tar.gz otp-f2f29ac19a18b4870bc4b8b5eaa5e04ecabbcdb5.tar.bz2 otp-f2f29ac19a18b4870bc4b8b5eaa5e04ecabbcdb5.zip |
[observer] Present Memory for each process in crashdump_viewer
A new field named "Memory" has been added for each process in the
crash dump. This is now shown by the crashdump_viewer. It replaces the
"Stack+heap" column in the process overview page, and is added to the
process detail page.
Diffstat (limited to 'lib/observer/src/crashdump_viewer.hrl')
-rw-r--r-- | lib/observer/src/crashdump_viewer.hrl | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/observer/src/crashdump_viewer.hrl b/lib/observer/src/crashdump_viewer.hrl index 466f33b63b..2e0ea5cf96 100644 --- a/lib/observer/src/crashdump_viewer.hrl +++ b/lib/observer/src/crashdump_viewer.hrl @@ -1,7 +1,7 @@ %% %% %CopyrightBegin% %% -%% Copyright Ericsson AB 2003-2011. All Rights Reserved. +%% Copyright Ericsson AB 2003-2013. All Rights Reserved. %% %% The contents of this file are subject to the Erlang Public License, %% Version 1.1, (the "License"); you may not use this file except in @@ -18,7 +18,7 @@ %% -define(space, " "). -define(unknown, "unknown"). - +-define(r16b01_dump_vsn, [0,2]). % =erl_crash_dump:0.2 -record(menu_item,{index,picture,text,depth,children,state,target}). @@ -83,6 +83,7 @@ old_heap_start=?space, old_heap_top=?space, old_heap_end=?space, + memory, stack_dump=?space}). -record(port, |