diff options
author | Sverker Eriksson <[email protected]> | 2016-10-27 14:16:34 +0200 |
---|---|---|
committer | Sverker Eriksson <[email protected]> | 2016-10-27 14:16:34 +0200 |
commit | e402b08254ee9a78a2560e3123e1fb468fa948dc (patch) | |
tree | 0643077532cd0d91ac8b0b23a1cc26b0093f780b /erts/emulator/beam/beam_bif_load.c | |
parent | c49194c9239c0dcad17b902b6638edf53bb69c6c (diff) | |
parent | ce0785da10fb5d82ed3b6e93ff82e112f38e75fa (diff) | |
download | otp-e402b08254ee9a78a2560e3123e1fb468fa948dc.tar.gz otp-e402b08254ee9a78a2560e3123e1fb468fa948dc.tar.bz2 otp-e402b08254ee9a78a2560e3123e1fb468fa948dc.zip |
Merge branch 'maint'
Diffstat (limited to 'erts/emulator/beam/beam_bif_load.c')
-rw-r--r-- | erts/emulator/beam/beam_bif_load.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/erts/emulator/beam/beam_bif_load.c b/erts/emulator/beam/beam_bif_load.c index 099abad4e1..e7301b1b4b 100644 --- a/erts/emulator/beam/beam_bif_load.c +++ b/erts/emulator/beam/beam_bif_load.c @@ -1397,10 +1397,10 @@ erts_purge_state_add_fun(ErlFunEntry *fe) } Export * -erts_suspend_process_on_pending_purge_lambda(Process *c_p) +erts_suspend_process_on_pending_purge_lambda(Process *c_p, ErlFunEntry* fe) { erts_smp_mtx_lock(&purge_state.mtx); - if (is_value(purge_state.module)) { + if (purge_state.module == fe->module) { /* * The process c_p is about to call a fun in the code * that we are trying to purge. Suspend it and call |