From 9a7df41a9e5361049a17c8aa971b52599fba2632 Mon Sep 17 00:00:00 2001 From: Lukas Larsson Date: Wed, 19 Sep 2018 16:37:55 +0200 Subject: erts: Move reason in dist messages to payload The dist messages EXIT, EXIT2 and MONITOR_DOWN have been updated with new versions that send the reason term as part of the payload of the message instead of as part of the control message. This allows the decode of the reason to be done by the receiving process instead of the dist entry which in turn makes it possible for multiple decodes to be done in parallel. This change is done in order to make it easier to fragment the potentially large payload of EXIT, EXIT2 and MONITOR_DOWN into multiple distribution messages. OTP-15611 --- erts/emulator/beam/external.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'erts/emulator/beam/external.h') diff --git a/erts/emulator/beam/external.h b/erts/emulator/beam/external.h index 1223f90fcc..91c028c9bd 100644 --- a/erts/emulator/beam/external.h +++ b/erts/emulator/beam/external.h @@ -176,7 +176,7 @@ byte* erts_encode_ext_ets(Eterm, byte *, struct erl_off_heap_header** ext_off_he void erts_free_dist_ext_copy(ErtsDistExternal *); ERTS_GLB_INLINE void *erts_dist_ext_trailer(ErtsDistExternal *); -ErtsDistExternal *erts_make_dist_ext_copy(ErtsDistExternal *, Uint); +ErtsDistExternal *erts_make_dist_ext_copy(ErtsDistExternal *, Eterm *); void *erts_dist_ext_trailer(ErtsDistExternal *); void erts_destroy_dist_ext_copy(ErtsDistExternal *); -- cgit v1.2.3