aboutsummaryrefslogtreecommitdiffstats
path: root/erts/emulator/beam/beam_bp.h
diff options
context:
space:
mode:
authorRickard Green <[email protected]>2015-12-22 18:32:10 +0100
committerRickard Green <[email protected]>2015-12-23 13:44:09 +0100
commit77f0f265f860130102acc1db31d99f8dd9e690c5 (patch)
treece5d124cd170cb0c7676a1bf6d2766ff780c5f5e /erts/emulator/beam/beam_bp.h
parent21d6192389a04024f7a41ced9d0911a9cce6f4e8 (diff)
downloadotp-77f0f265f860130102acc1db31d99f8dd9e690c5.tar.gz
otp-77f0f265f860130102acc1db31d99f8dd9e690c5.tar.bz2
otp-77f0f265f860130102acc1db31d99f8dd9e690c5.zip
Use monotonic time for call_time trace
Diffstat (limited to 'erts/emulator/beam/beam_bp.h')
-rw-r--r--erts/emulator/beam/beam_bp.h7
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 */