diff options
author | Sverker Eriksson <[email protected]> | 2016-12-21 17:41:43 +0100 |
---|---|---|
committer | Sverker Eriksson <[email protected]> | 2017-01-04 20:09:16 +0100 |
commit | fb4e0f8726d2e3033164fe6e44c49351c6b641de (patch) | |
tree | c016f6f674000fb292dfe13df1a5200968a57a8f /erts/emulator/beam/erl_gc.c | |
parent | b60bdd762bc2f42b3e4eebf7256e7aa9e79dced1 (diff) | |
download | otp-fb4e0f8726d2e3033164fe6e44c49351c6b641de.tar.gz otp-fb4e0f8726d2e3033164fe6e44c49351c6b641de.tar.bz2 otp-fb4e0f8726d2e3033164fe6e44c49351c6b641de.zip |
erts: Make erts_dbg_within_proc available
for debug assertions.
Diffstat (limited to 'erts/emulator/beam/erl_gc.c')
-rw-r--r-- | erts/emulator/beam/erl_gc.c | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/erts/emulator/beam/erl_gc.c b/erts/emulator/beam/erl_gc.c index 818f89f0e3..d907e7b351 100644 --- a/erts/emulator/beam/erl_gc.c +++ b/erts/emulator/beam/erl_gc.c @@ -3317,8 +3317,8 @@ erts_max_heap_size(Eterm arg, Uint *max_heap_size, Uint *max_heap_flags) #if defined(DEBUG) || defined(ERTS_OFFHEAP_DEBUG) -static int -within2(Eterm *ptr, Process *p, Eterm *real_htop) +int +erts_dbg_within_proc(Eterm *ptr, Process *p, Eterm *real_htop) { ErlHeapFragment* bp; ErtsMessage* mp; @@ -3362,12 +3362,6 @@ within2(Eterm *ptr, Process *p, Eterm *real_htop) return 0; } -int -within(Eterm *ptr, Process *p) -{ - return within2(ptr, p, NULL); -} - #endif #ifdef ERTS_OFFHEAP_DEBUG @@ -3422,7 +3416,7 @@ erts_check_off_heap2(Process *p, Eterm *htop) else if (oheap <= u.ep && u.ep < ohtop) old = 1; else { - ERTS_CHK_OFFHEAP_ASSERT(within2(u.ep, p, htop)); + ERTS_CHK_OFFHEAP_ASSERT(erts_dbg_within_proc(u.ep, p, htop)); } } |