diff options
author | Lukas Larsson <[email protected]> | 2019-03-19 14:08:16 +0100 |
---|---|---|
committer | Lukas Larsson <[email protected]> | 2019-03-25 16:34:11 +0100 |
commit | c18f95e787125f8be5a5b1731b896f7008a5d5db (patch) | |
tree | c25d4818b0b8eeb6e91040ff96f3f9f584976755 /erts/emulator/beam/erl_process.h | |
parent | 178721284f342e9c8408c336741e73b61162b138 (diff) | |
download | otp-c18f95e787125f8be5a5b1731b896f7008a5d5db.tar.gz otp-c18f95e787125f8be5a5b1731b896f7008a5d5db.tar.bz2 otp-c18f95e787125f8be5a5b1731b896f7008a5d5db.zip |
erts: erts_factory_proc_init should not set hole marker
Setting the hole marker in debug on the entire heap is very slow
so instead we do it in erts_produce_heap.
Diffstat (limited to 'erts/emulator/beam/erl_process.h')
-rw-r--r-- | erts/emulator/beam/erl_process.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/erts/emulator/beam/erl_process.h b/erts/emulator/beam/erl_process.h index 4ffa022d5c..711b73417d 100644 --- a/erts/emulator/beam/erl_process.h +++ b/erts/emulator/beam/erl_process.h @@ -1322,9 +1322,6 @@ ERTS_GLB_INLINE void erts_heap_frag_shrink(Process* p, Eterm* hp) #endif /* inline */ Eterm* erts_heap_alloc(Process* p, Uint need, Uint xtra); -#ifdef CHECK_FOR_HOLES -Eterm* erts_set_hole_marker(Eterm* ptr, Uint sz); -#endif extern erts_rwmtx_t erts_cpu_bind_rwmtx; /* If any of the erts_system_monitor_* variables are set (enabled), |