aboutsummaryrefslogtreecommitdiffstats
path: root/erts/emulator/beam/erl_utils.h
diff options
context:
space:
mode:
authorJohn Högberg <[email protected]>2017-06-27 15:54:18 +0200
committerJohn Högberg <[email protected]>2017-06-27 15:54:18 +0200
commit146656b711bef667de38f939d1f712555d9a76a8 (patch)
tree053dde2a22837d0623c20f65f73be41298a3cc63 /erts/emulator/beam/erl_utils.h
parent47fc5311bc58199db92269e5dcb014656475d4c0 (diff)
parent0dced656e6871e03a153bb99af10d8710ffca7d9 (diff)
downloadotp-146656b711bef667de38f939d1f712555d9a76a8.tar.gz
otp-146656b711bef667de38f939d1f712555d9a76a8.tar.bz2
otp-146656b711bef667de38f939d1f712555d9a76a8.zip
Merge branch 'maint'
* maint: Updated OTP version Update release notes Update version numbers Fix statistics(wall_clock) and statistics(runtime) implementation fixup! erts: Cleanup dropped port tasks correctly erts: Add tests to detect port close race Add a testcase for OTP-13939/ERL-193 erts: Cleanup dropped port tasks correctly Mark socket disconnected on tcp_send_or_shutdown_error
Diffstat (limited to 'erts/emulator/beam/erl_utils.h')
-rw-r--r--erts/emulator/beam/erl_utils.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/erts/emulator/beam/erl_utils.h b/erts/emulator/beam/erl_utils.h
index 07cf4f6903..3d28b05752 100644
--- a/erts/emulator/beam/erl_utils.h
+++ b/erts/emulator/beam/erl_utils.h
@@ -131,6 +131,7 @@ Eterm erts_bld_uint(Uint **hpp, Uint *szp, Uint ui);
Eterm erts_bld_uword(Uint **hpp, Uint *szp, UWord uw);
Eterm erts_bld_uint64(Uint **hpp, Uint *szp, Uint64 ui64);
Eterm erts_bld_sint64(Uint **hpp, Uint *szp, Sint64 si64);
+#define erts_bld_monotonic_time erts_bld_sint64
Eterm erts_bld_cons(Uint **hpp, Uint *szp, Eterm car, Eterm cdr);
Eterm erts_bld_tuple(Uint **hpp, Uint *szp, Uint arity, ...);
#define erts_bld_tuple2(H,S,E1,E2) erts_bld_tuple(H,S,2,E1,E2)