diff options
author | Siri Hansen <siri@erlang.org> | 2013-06-04 10:57:52 +0200 |
---|---|---|
committer | Siri Hansen <siri@erlang.org> | 2013-06-04 10:57:52 +0200 |
commit | c2151dec9f14707ccaba72cb065824ee61c064a5 (patch) | |
tree | d39a451059aa3b618165b72d1c4fa0711fb050d0 /lib/observer/src/crashdump_viewer.hrl | |
parent | 9b04c2649ce98c32335c05e90d501c2e66bb2f0e (diff) | |
parent | 2cf4e22e4916d802d03de5f532bf86e9e8d8934b (diff) | |
download | otp-c2151dec9f14707ccaba72cb065824ee61c064a5.tar.gz otp-c2151dec9f14707ccaba72cb065824ee61c064a5.tar.bz2 otp-c2151dec9f14707ccaba72cb065824ee61c064a5.zip |
Merge branch 'siri/cdv/memory-info/OTP-10604' into maint
* siri/cdv/memory-info/OTP-10604:
[observer] Add mbcs_pool to allocator info in system window
[observer] Add mbcs_pool to allocator summary in crashdump_viewer
observer: Improve initial call info
observer: Add allocator info to gui
[observer] Present Memory for each process in crashdump_viewer
[observer] Add allocator summary in crashdump_viewer
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, |