aboutsummaryrefslogtreecommitdiffstats
path: root/erts/emulator/beam/erl_debug.c
diff options
context:
space:
mode:
authorSverker Eriksson <[email protected]>2015-09-07 14:44:38 +0200
committerSverker Eriksson <[email protected]>2015-09-07 14:44:38 +0200
commit0b629b6dcbedc1c889843cde784696353db32dba (patch)
tree66ef2869a669f65f0219d0c9810c965ecdc82e35 /erts/emulator/beam/erl_debug.c
parentc4dcde5c694b9795f58563cf72c0701af30ed866 (diff)
parent6e75676652d87d78041a9db11b088b33ad7ef672 (diff)
downloadotp-0b629b6dcbedc1c889843cde784696353db32dba.tar.gz
otp-0b629b6dcbedc1c889843cde784696353db32dba.tar.bz2
otp-0b629b6dcbedc1c889843cde784696353db32dba.zip
Merge branch 'sverk/trace-process_dump-matchstate' into maint
* sverk/trace-process_dump-matchstate: erts: Add testcase for tracing whith 'process_dump' erts: Fix bug when tracing with 'process_dump' OTP-12968
Diffstat (limited to 'erts/emulator/beam/erl_debug.c')
-rw-r--r--erts/emulator/beam/erl_debug.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/erts/emulator/beam/erl_debug.c b/erts/emulator/beam/erl_debug.c
index 77a1e3d7cb..2dcfb79f00 100644
--- a/erts/emulator/beam/erl_debug.c
+++ b/erts/emulator/beam/erl_debug.c
@@ -189,6 +189,9 @@ pdisplay1(int to, void *to_arg, Process* p, Eterm obj)
case BINARY_DEF:
erts_print(to, to_arg, "#Bin");
break;
+ case MATCHSTATE_DEF:
+ erts_print(to, to_arg, "#Matchstate");
+ break;
default:
erts_print(to, to_arg, "unknown object %x", obj);
}