diff options
author | Björn-Egil Dahlberg <[email protected]> | 2015-06-16 10:10:50 +0200 |
---|---|---|
committer | Björn-Egil Dahlberg <[email protected]> | 2015-06-16 23:15:28 +0200 |
commit | 92e6fb7f31ad8977144a1cfbcee05895839dbc62 (patch) | |
tree | 92991ccb6db7b2b2bed5d9915302734fe1b9e96e /erts | |
parent | e14ca38380885e50a134b8c4297c44aec73ccb5f (diff) | |
download | otp-92e6fb7f31ad8977144a1cfbcee05895839dbc62.tar.gz otp-92e6fb7f31ad8977144a1cfbcee05895839dbc62.tar.bz2 otp-92e6fb7f31ad8977144a1cfbcee05895839dbc62.zip |
Revert "Add run queue index to process dump info"
This reverts commit 345af4a0c8d68b9369c3556fa6d911854c123d3f.
Diffstat (limited to 'erts')
-rw-r--r-- | erts/doc/src/crash_dump.xml | 3 | ||||
-rw-r--r-- | erts/emulator/beam/break.c | 1 |
2 files changed, 0 insertions, 4 deletions
diff --git a/erts/doc/src/crash_dump.xml b/erts/doc/src/crash_dump.xml index 65a3d6af88..e13d468ee6 100644 --- a/erts/doc/src/crash_dump.xml +++ b/erts/doc/src/crash_dump.xml @@ -304,9 +304,6 @@ <tag><em>Last scheduled in for | Current call</em></tag> <item>The current function of the process. These fields will not always exist.</item> - <tag><em>Run queue</em></tag> - <item>The identifier of the scheduler run queue in which the process is - running.</item> <tag><em>Spawned by</em></tag> <item>The parent of the process, i.e. the process which executed <c><![CDATA[spawn]]></c> or <c><![CDATA[spawn_link]]></c>.</item> diff --git a/erts/emulator/beam/break.c b/erts/emulator/beam/break.c index 02e65cb9c6..3cb605834f 100644 --- a/erts/emulator/beam/break.c +++ b/erts/emulator/beam/break.c @@ -242,7 +242,6 @@ print_process_info(int to, void *to_arg, Process *p) p->current[1], p->current[2]); } - erts_print(to, to_arg, "Run queue: %d\n", erts_get_runq_proc(p)->ix); erts_print(to, to_arg, "Spawned by: %T\n", p->parent); approx_started = (time_t) p->approx_started; |