diff options
author | Lukas Larsson <[email protected]> | 2016-03-18 17:36:46 +0100 |
---|---|---|
committer | Lukas Larsson <[email protected]> | 2016-04-15 15:08:18 +0200 |
commit | ec6615584daa1ec4429127ca8ff6e506c72cddb9 (patch) | |
tree | 9f7f68fba9b86803ae68a0a6e4eac08419675caa /lib/runtime_tools | |
parent | 2a0e30cb155b80273eb43bc0e01376b68a5fb5b0 (diff) | |
download | otp-ec6615584daa1ec4429127ca8ff6e506c72cddb9.tar.gz otp-ec6615584daa1ec4429127ca8ff6e506c72cddb9.tar.bz2 otp-ec6615584daa1ec4429127ca8ff6e506c72cddb9.zip |
runtime_rools: Allow new timestamp trace flags
OTP-13502
Diffstat (limited to 'lib/runtime_tools')
-rw-r--r-- | lib/runtime_tools/src/dbg.erl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/runtime_tools/src/dbg.erl b/lib/runtime_tools/src/dbg.erl index 9ab66c7f5c..3a6eaae16d 100644 --- a/lib/runtime_tools/src/dbg.erl +++ b/lib/runtime_tools/src/dbg.erl @@ -1125,7 +1125,8 @@ transform_flags(Bad,_Acc) -> {error,{bad_flags,Bad}}. all() -> [send,'receive',call,procs,ports,garbage_collection,running, set_on_spawn,set_on_first_spawn,set_on_link,set_on_first_link, - timestamp,arity,return_to,silent,running_procs,running_ports]. + timestamp,monotonic_timestamp,strict_monotonic_timestamp, + arity,return_to,silent,running_procs,running_ports]. display_info([Node|Nodes]) -> io:format("~nNode ~w:~n",[Node]), |