diff options
author | Björn-Egil Dahlberg <[email protected]> | 2010-04-10 17:27:24 +0200 |
---|---|---|
committer | Raimo Niskanen <[email protected]> | 2010-06-03 14:54:20 +0200 |
commit | b937b42d2f98c4e0024418dbbd55ff545bcf65d6 (patch) | |
tree | 7de7932e20255f1bf4ecf17ab0128f171083424b /erts/emulator/beam/global.h | |
parent | cbd1378ee1fde835e55614bac9290b281bafe49a (diff) | |
download | otp-b937b42d2f98c4e0024418dbbd55ff545bcf65d6.tar.gz otp-b937b42d2f98c4e0024418dbbd55ff545bcf65d6.tar.bz2 otp-b937b42d2f98c4e0024418dbbd55ff545bcf65d6.zip |
Call time breakpoint tracing framework
Initial commit with a new breakpoint instruction and PSD areas
for temporary time storage during tracing.
Diffstat (limited to 'erts/emulator/beam/global.h')
-rw-r--r-- | erts/emulator/beam/global.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/erts/emulator/beam/global.h b/erts/emulator/beam/global.h index 19dd3d6f97..711b613028 100644 --- a/erts/emulator/beam/global.h +++ b/erts/emulator/beam/global.h @@ -1741,6 +1741,7 @@ struct trace_pattern_flags { unsigned int local : 1; /* Local call trace breakpoint */ unsigned int meta : 1; /* Metadata trace breakpoint */ unsigned int call_count : 1; /* Fast call count breakpoint */ + unsigned int call_time : 1; /* Fast call time breakpoint */ }; extern const struct trace_pattern_flags erts_trace_pattern_flags_off; int erts_set_trace_pattern(Eterm* mfa, int specified, |