diff options
author | Lukas Larsson <[email protected]> | 2018-06-05 10:32:38 +0200 |
---|---|---|
committer | Lukas Larsson <[email protected]> | 2018-06-05 10:32:38 +0200 |
commit | bc50c1e4e0d7deaae19804964760d4ffa1e13cbb (patch) | |
tree | 21f0db5c5832d53be4c8824812b79017492d5395 /erts | |
parent | cfd29269fa1bbcf16ef38273e6f0c91d727f8c06 (diff) | |
download | otp-bc50c1e4e0d7deaae19804964760d4ffa1e13cbb.tar.gz otp-bc50c1e4e0d7deaae19804964760d4ffa1e13cbb.tar.bz2 otp-bc50c1e4e0d7deaae19804964760d4ffa1e13cbb.zip |
erts: Fix emulator log messages to use erlang:system_time
This was changed in the logger in 8aa64c90ddd20ec0ca8cc5fe92a6124324c51da5.
Diffstat (limited to 'erts')
-rw-r--r-- | erts/emulator/beam/utils.c | 2 | ||||
-rw-r--r-- | erts/etc/unix/etp-commands.in | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/erts/emulator/beam/utils.c b/erts/emulator/beam/utils.c index d74052d8b2..cd625406f7 100644 --- a/erts/emulator/beam/utils.c +++ b/erts/emulator/beam/utils.c @@ -1946,7 +1946,7 @@ do_allocate_logger_message(Eterm gleader, ErtsMonotonicTime *ts, Eterm *pid, else sz += MAP4_SZ /* metadata map w gl w pid*/; - *ts = ERTS_MONOTONIC_TO_USEC(erts_get_monotonic_time(NULL)) + ERTS_MONOTONIC_OFFSET_USEC; + *ts = ERTS_MONOTONIC_TO_USEC(erts_get_monotonic_time(NULL) + erts_get_time_offset()); erts_bld_sint64(NULL, &sz, *ts); *bp = new_message_buffer(sz); diff --git a/erts/etc/unix/etp-commands.in b/erts/etc/unix/etp-commands.in index 39e378193a..5b89621733 100644 --- a/erts/etc/unix/etp-commands.in +++ b/erts/etc/unix/etp-commands.in @@ -1346,7 +1346,6 @@ define etp-sigq-int else if $etp_sig_save_last && *$etp_sig_save_last == $etp_sig printf " %% <== SAVED_LAST" - else end end if $etp_sig_next |