diff options
author | Rickard Green <[email protected]> | 2015-12-30 11:37:34 +0100 |
---|---|---|
committer | Rickard Green <[email protected]> | 2015-12-30 11:37:34 +0100 |
commit | d32ef0d4fab9b18d34b97fd7c785bcadfe292f81 (patch) | |
tree | cc35af1df2915d2d7535445336851106717e6e5c /erts/emulator/beam/beam_bp.h | |
parent | 1237669f7c59714f0c27d3df748241dfd655c0be (diff) | |
parent | 77f0f265f860130102acc1db31d99f8dd9e690c5 (diff) | |
download | otp-d32ef0d4fab9b18d34b97fd7c785bcadfe292f81.tar.gz otp-d32ef0d4fab9b18d34b97fd7c785bcadfe292f81.tar.bz2 otp-d32ef0d4fab9b18d34b97fd7c785bcadfe292f81.zip |
Merge branch 'rickard/trace_call_time/OTP-13216' into maint
* rickard/trace_call_time/OTP-13216:
Use monotonic time for call_time trace
Diffstat (limited to 'erts/emulator/beam/beam_bp.h')
-rw-r--r-- | erts/emulator/beam/beam_bp.h | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/erts/emulator/beam/beam_bp.h b/erts/emulator/beam/beam_bp.h index 97d0539ac7..2b89d6fc71 100644 --- a/erts/emulator/beam/beam_bp.h +++ b/erts/emulator/beam/beam_bp.h @@ -29,8 +29,7 @@ typedef struct { Eterm pid; Sint count; - Uint s_time; - Uint us_time; + ErtsMonotonicTime time; } bp_data_time_item_t; typedef struct { @@ -46,9 +45,7 @@ typedef struct bp_data_time { /* Call time */ } BpDataTime; typedef struct { - Uint ms; - Uint s; - Uint us; + ErtsMonotonicTime time; BeamInstr *pc; } process_breakpoint_time_t; /* used within psd */ |