diff options
author | Lukas Larsson <[email protected]> | 2016-11-02 08:20:22 +0100 |
---|---|---|
committer | Lukas Larsson <[email protected]> | 2016-11-02 08:20:22 +0100 |
commit | 02d95710d58e3f8e7e6bcfe51eededac3dc0bc27 (patch) | |
tree | 9a3b6789b627a8f752e15f734023c99b8fdb448a /lib/tools | |
parent | a0bf02669193d3a104ce7ff7ecc44dedf6bed4fb (diff) | |
parent | 32204413c0501b4ace070842ab75afb55cfd0d02 (diff) | |
download | otp-02d95710d58e3f8e7e6bcfe51eededac3dc0bc27.tar.gz otp-02d95710d58e3f8e7e6bcfe51eededac3dc0bc27.tar.bz2 otp-02d95710d58e3f8e7e6bcfe51eededac3dc0bc27.zip |
Merge branch 'maint'
Diffstat (limited to 'lib/tools')
-rw-r--r-- | lib/tools/src/fprof.erl | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/tools/src/fprof.erl b/lib/tools/src/fprof.erl index 1291a3e5ec..d1a4624419 100644 --- a/lib/tools/src/fprof.erl +++ b/lib/tools/src/fprof.erl @@ -1702,6 +1702,12 @@ trace_handler({trace_ts, Pid, send, _OtherPid, _Msg, TS} = Trace, dump_stack(Dump, get(Pid), Trace), TS; %% +%% send_to_non_existing_process +trace_handler({trace_ts, Pid, send_to_non_existing_process, _OtherPid, _Msg, TS} = Trace, + _Table, _, Dump) -> + dump_stack(Dump, get(Pid), Trace), + TS; +%% %% 'receive' trace_handler({trace_ts, Pid, 'receive', _Msg, TS} = Trace, _Table, _, Dump) -> |