aboutsummaryrefslogtreecommitdiffstats
path: root/lib/observer/src/cdv_bin_cb.erl
diff options
context:
space:
mode:
authorDan Gudmundsson <[email protected]>2015-06-05 12:58:45 +0200
committerDan Gudmundsson <[email protected]>2015-06-05 12:58:45 +0200
commitd541405a28878ad94b8e92d8cc32f6376a9cd058 (patch)
tree9cf074bf5871d79024debc2030eeecc8cba08c03 /lib/observer/src/cdv_bin_cb.erl
parent24a161d8c479e70ad55ebac18cd92ecc41dd607c (diff)
parentb65330a798ffa38a93cc161596a826b6018cebd3 (diff)
downloadotp-d541405a28878ad94b8e92d8cc32f6376a9cd058.tar.gz
otp-d541405a28878ad94b8e92d8cc32f6376a9cd058.tar.bz2
otp-d541405a28878ad94b8e92d8cc32f6376a9cd058.zip
Merge branch 'dgud/observer/cdw-update/OTP-12363'
* dgud/observer/cdw-update/OTP-12363: observer: cdv add scheduler information observer: cdv add more ets information Reorder scheduler information in crashdumps
Diffstat (limited to 'lib/observer/src/cdv_bin_cb.erl')
-rw-r--r--lib/observer/src/cdv_bin_cb.erl6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/observer/src/cdv_bin_cb.erl b/lib/observer/src/cdv_bin_cb.erl
index d5fbceff1e..8b427e92b7 100644
--- a/lib/observer/src/cdv_bin_cb.erl
+++ b/lib/observer/src/cdv_bin_cb.erl
@@ -17,14 +17,14 @@
%% %CopyrightEnd%
-module(cdv_bin_cb).
--export([get_details/1,
+-export([get_details/2,
detail_pages/0]).
%% Callbacks for cdv_detail_wx
-get_details({Type, {T,Key}}) ->
+get_details({Type, {T,Key}}, _) ->
[{Key,Term}] = ets:lookup(T,Key),
{ok,{"Expanded Binary", {Type, Term}, []}};
-get_details({cdv, Id}) ->
+get_details({cdv, Id}, _) ->
{ok,Bin} = crashdump_viewer:expand_binary(Id),
{ok,{"Expanded Binary", {cvd, Bin}, []}}.