Closed arnaud-lb closed 3 years ago
malloc hooks are not thread-safe, and memprof is likely to crash if the presence of multiple threads in the same process (e.g. if some extension spawns threads).
One temporary mitigation is to set HAVE_MALLOC_HOOKS to 0 in config.h after configure.
HAVE_MALLOC_HOOKS
A proper fix is needed.
Fixed: Native profiling is now disabled by default
malloc hooks are not thread-safe, and memprof is likely to crash if the presence of multiple threads in the same process (e.g. if some extension spawns threads).
One temporary mitigation is to set
HAVE_MALLOC_HOOKS
to 0 in config.h after configure.A proper fix is needed.