aboutsummaryrefslogtreecommitdiffstats
path: root/erts/emulator/beam/erl_node_tables.c
diff options
context:
space:
mode:
authorLukas Larsson <[email protected]>2019-01-29 10:19:47 +0100
committerLukas Larsson <[email protected]>2019-02-22 11:12:54 +0100
commit1066040c35e96566e415c50042345fba865f10c8 (patch)
tree8d36d991907bf6a1f4b34667b45889f8edc57c48 /erts/emulator/beam/erl_node_tables.c
parent6493f5e396c7528ef6696ce440619550edb5c6ff (diff)
downloadotp-1066040c35e96566e415c50042345fba865f10c8.tar.gz
otp-1066040c35e96566e415c50042345fba865f10c8.tar.bz2
otp-1066040c35e96566e415c50042345fba865f10c8.zip
erts: Refactor ErtsSendContext to be ErtsDSigSendContext
This commit removed the general send context (which was used very little anyways) and only uses the distributed send context. This will make it easier to use the dist API at the cost of a little bit more code for the local send.
Diffstat (limited to 'erts/emulator/beam/erl_node_tables.c')
-rw-r--r--erts/emulator/beam/erl_node_tables.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/erts/emulator/beam/erl_node_tables.c b/erts/emulator/beam/erl_node_tables.c
index ede9f092e9..b301e5d56a 100644
--- a/erts/emulator/beam/erl_node_tables.c
+++ b/erts/emulator/beam/erl_node_tables.c
@@ -1516,7 +1516,7 @@ insert_offheap(ErlOffHeap *oh, int type, Eterm id)
}
}
else if (IsSendCtxBinary(u.mref->mb)) {
- ErtsSendContext* ctx = ERTS_MAGIC_BIN_DATA(u.mref->mb);
+ ErtsDSigSendContext* ctx = ERTS_MAGIC_BIN_DATA(u.mref->mb);
if (ctx->deref_dep)
insert_dist_entry(ctx->dep, type, id, 0);
}