diff options
author | Rickard Green <[email protected]> | 2011-12-20 13:32:17 +0100 |
---|---|---|
committer | Rickard Green <[email protected]> | 2011-12-20 13:32:17 +0100 |
commit | 40d571461d8fa708028fc6cb91ef6a1905cddd3c (patch) | |
tree | ef71316a00b771d19a7c544a49052ec9540fdb8a | |
parent | 2799d29ad1123b5128498ea89d2ff5678e59b545 (diff) | |
download | otp-40d571461d8fa708028fc6cb91ef6a1905cddd3c.tar.gz otp-40d571461d8fa708028fc6cb91ef6a1905cddd3c.tar.bz2 otp-40d571461d8fa708028fc6cb91ef6a1905cddd3c.zip |
Remove bad assert
It is possible also in non-SMP case:
1. The process receives an exit signal and is set in status exiting
and inserted into the run queue.
2. The distribution port exits before the process has been selected
for execution and cannot remove the link half on the process since
it is in status exiting.
3. Process is selected for execution and when removing this link half
the distribution channel is gone!
-rw-r--r-- | erts/emulator/beam/erl_process.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/erts/emulator/beam/erl_process.c b/erts/emulator/beam/erl_process.c index b8c6b64fc0..5469a59d8c 100644 --- a/erts/emulator/beam/erl_process.c +++ b/erts/emulator/beam/erl_process.c @@ -7980,15 +7980,6 @@ static void doit_exit_link(ErtsLink *lnk, void *vpcontext) if (rlnk) erts_destroy_link(rlnk); erts_deref_dist_entry(dep); - } else { -#ifndef ERTS_SMP - /* XXX Is this possible? Shouldn't this link - previously have been removed if the node - had previously been disconnected. */ - ASSERT(0); -#endif - /* This is possible when smp support has been enabled, - and dist port and process exits simultaneously. */ } break; |