diff options
author | Sverker Eriksson <[email protected]> | 2018-09-11 16:56:29 +0200 |
---|---|---|
committer | Sverker Eriksson <[email protected]> | 2018-09-11 16:56:29 +0200 |
commit | 49504906b4a16b69e52beb09e92f68c6ccd51753 (patch) | |
tree | 35ef0bcac236ce8ce6fcbc7bdcbc07764153b106 /erts/emulator/beam/dist.h | |
parent | 30e5321740b96b3a8984611b6f821692716d0555 (diff) | |
download | otp-49504906b4a16b69e52beb09e92f68c6ccd51753.tar.gz otp-49504906b4a16b69e52beb09e92f68c6ccd51753.tar.bz2 otp-49504906b4a16b69e52beb09e92f68c6ccd51753.zip |
erts: Fix "Prevent inconsistent node lists" fix
done in a31216200bdee2c04b3fb3ae5e26607674715c8a
that could cause a new pending connection to be incorrectly aborted.
Diffstat (limited to 'erts/emulator/beam/dist.h')
-rw-r--r-- | erts/emulator/beam/dist.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/erts/emulator/beam/dist.h b/erts/emulator/beam/dist.h index 30b4b35c20..75cb865390 100644 --- a/erts/emulator/beam/dist.h +++ b/erts/emulator/beam/dist.h @@ -399,7 +399,7 @@ extern void erts_kill_dist_connection(DistEntry *dep, Uint32); extern Uint erts_dist_cache_size(void); -extern Sint erts_abort_connection(DistEntry *dep, Uint32 conn_id); +extern Sint erts_abort_connection_rwunlock(DistEntry *dep); #endif |