diff options
author | Rick Reed <[email protected]> | 2013-02-13 08:48:18 -0800 |
---|---|---|
committer | Anthony Ramine <[email protected]> | 2014-03-09 11:10:25 +0100 |
commit | 345af4a0c8d68b9369c3556fa6d911854c123d3f (patch) | |
tree | 906c0d6e8a8be67c6188c4723f8ded41d0f7fdc8 /erts/emulator/beam/break.c | |
parent | e2c11e89563f0c11794c91193b29bce00ca9c740 (diff) | |
download | otp-345af4a0c8d68b9369c3556fa6d911854c123d3f.tar.gz otp-345af4a0c8d68b9369c3556fa6d911854c123d3f.tar.bz2 otp-345af4a0c8d68b9369c3556fa6d911854c123d3f.zip |
Add run queue index to process dump info
Diffstat (limited to 'erts/emulator/beam/break.c')
-rw-r--r-- | erts/emulator/beam/break.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/erts/emulator/beam/break.c b/erts/emulator/beam/break.c index 7d4f52ee23..08265b590d 100644 --- a/erts/emulator/beam/break.c +++ b/erts/emulator/beam/break.c @@ -256,6 +256,7 @@ 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; |