diff options
author | Dan Gudmundsson <[email protected]> | 2015-05-27 16:27:26 +0200 |
---|---|---|
committer | Dan Gudmundsson <[email protected]> | 2015-06-05 12:57:34 +0200 |
commit | b65330a798ffa38a93cc161596a826b6018cebd3 (patch) | |
tree | 9cf074bf5871d79024debc2030eeecc8cba08c03 /lib/observer/src/crashdump_viewer.hrl | |
parent | 534a23c34d38a954610ac11329515a373efa008b (diff) | |
download | otp-b65330a798ffa38a93cc161596a826b6018cebd3.tar.gz otp-b65330a798ffa38a93cc161596a826b6018cebd3.tar.bz2 otp-b65330a798ffa38a93cc161596a826b6018cebd3.zip |
observer: cdv add scheduler information
New info in 18.
Diffstat (limited to 'lib/observer/src/crashdump_viewer.hrl')
-rw-r--r-- | lib/observer/src/crashdump_viewer.hrl | 18 |
1 files changed, 16 insertions, 2 deletions
diff --git a/lib/observer/src/crashdump_viewer.hrl b/lib/observer/src/crashdump_viewer.hrl index 06a81500e3..9515e74114 100644 --- a/lib/observer/src/crashdump_viewer.hrl +++ b/lib/observer/src/crashdump_viewer.hrl @@ -36,7 +36,9 @@ num_fun, mem_tot, mem_max, - instr_info}). + instr_info, + thread + }). -record(proc, %% Initial data according to the follwoing: @@ -86,7 +88,8 @@ old_heap_end, memory, stack_dump, - run_queue=?unknown + run_queue=?unknown, + int_state }). -record(port, @@ -98,6 +101,17 @@ monitors, controls}). +-record(sched, + {name, + process, + port, + run_q=0, + port_q=0, + details=#{} + }). + + + -record(ets_table, {pid, slot, |