aboutsummaryrefslogtreecommitdiffstats
path: root/erts/emulator/nifs/common
diff options
context:
space:
mode:
authorMicael Karlberg <[email protected]>2019-05-20 15:23:48 +0200
committerMicael Karlberg <[email protected]>2019-06-14 12:32:44 +0200
commit2c08787a53d30bb60d2b604eedb19389dc5a0d9e (patch)
tree4f64870edf785ab04de6a2a45269453ceec851c9 /erts/emulator/nifs/common
parent897a266c3e68d7d94d1f9699ae91cf57fb3b5cc8 (diff)
downloadotp-2c08787a53d30bb60d2b604eedb19389dc5a0d9e.tar.gz
otp-2c08787a53d30bb60d2b604eedb19389dc5a0d9e.tar.bz2
otp-2c08787a53d30bb60d2b604eedb19389dc5a0d9e.zip
[esock,kernel] net -> prim_net and add (new) net
Renamed the current preloaded net module to prim_net and removed the deprecated functions (call, cast, ...). Introduce a "new" net module (in kernel) as an interface module to the (preloaded) prim_net. This one also contains the deprecated functions (call, cast, ...). OTP-15765
Diffstat (limited to 'erts/emulator/nifs/common')
-rw-r--r--erts/emulator/nifs/common/prim_net_nif.c (renamed from erts/emulator/nifs/common/net_nif.c)2
1 files changed, 1 insertions, 1 deletions
diff --git a/erts/emulator/nifs/common/net_nif.c b/erts/emulator/nifs/common/prim_net_nif.c
index 8a69052935..11a8ff724e 100644
--- a/erts/emulator/nifs/common/net_nif.c
+++ b/erts/emulator/nifs/common/prim_net_nif.c
@@ -1653,4 +1653,4 @@ LOCAL_ERROR_REASON_ATOMS
return !net;
}
-ERL_NIF_INIT(net, net_funcs, on_load, NULL, NULL, NULL)
+ERL_NIF_INIT(prim_net, net_funcs, on_load, NULL, NULL, NULL)