diff options
author | Lukas Larsson <[email protected]> | 2015-10-05 15:36:37 +0200 |
---|---|---|
committer | Lukas Larsson <[email protected]> | 2015-10-05 15:36:37 +0200 |
commit | 02a7407dfefd539b6850c13e1e3f4df9afd715ac (patch) | |
tree | fb0158e6977fc72e2b58ecd80ce23bcb4a208ae9 /erts/emulator | |
parent | 4c8723f377b6db8e9899c4192887284feb3c3cf4 (diff) | |
parent | 3f75988488197f7cf3846f9b7705376779728f4c (diff) | |
download | otp-02a7407dfefd539b6850c13e1e3f4df9afd715ac.tar.gz otp-02a7407dfefd539b6850c13e1e3f4df9afd715ac.tar.bz2 otp-02a7407dfefd539b6850c13e1e3f4df9afd715ac.zip |
Merge branch 'lukas/erts/fix_ptab_assert/OTP-13028' into maint
Diffstat (limited to 'erts/emulator')
-rw-r--r-- | erts/emulator/beam/erl_process_lock.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/erts/emulator/beam/erl_process_lock.h b/erts/emulator/beam/erl_process_lock.h index 788348e613..a64c993e8f 100644 --- a/erts/emulator/beam/erl_process_lock.h +++ b/erts/emulator/beam/erl_process_lock.h @@ -854,9 +854,6 @@ ERTS_GLB_INLINE void erts_proc_dec_refc(Process *p) #endif if (!referred) { ASSERT(ERTS_PROC_IS_EXITING(p)); - ASSERT(ERTS_AINT_NULL - == erts_ptab_pix2intptr_ddrb(&erts_proc, - internal_pid_index(p->common.id))); erts_free_proc(p); } } @@ -872,9 +869,6 @@ ERTS_GLB_INLINE void erts_proc_add_refc(Process *p, Sint add_refc) #endif if (!referred) { ASSERT(ERTS_PROC_IS_EXITING(p)); - ASSERT(ERTS_AINT_NULL - == erts_ptab_pix2intptr_ddrb(&erts_proc, - internal_pid_index(p->common.id))); erts_free_proc(p); } } |