diff options
author | Dana Robinson <43805+derobins@users.noreply.github.com> | 2023-03-18 04:25:50 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-18 04:25:50 (GMT) |
commit | 084247f1cd3bf09df5dd49de3de1874768caaf9f (patch) | |
tree | 11c8aff1d73d8f1db07d5919ff75335a206e17bb /src | |
parent | 45f13f1de1b6db0fdc34681b4b8046fa46f921ba (diff) | |
download | hdf5-084247f1cd3bf09df5dd49de3de1874768caaf9f.zip hdf5-084247f1cd3bf09df5dd49de3de1874768caaf9f.tar.gz hdf5-084247f1cd3bf09df5dd49de3de1874768caaf9f.tar.bz2 |
Removes dmalloc support (#2239) (#2587)
This has not been used to debug the library in a very long time. Most
developers use valgrind, -fsanitize=address, or some other memory checker
instead of this library.
This removes:
* dmalloc.h include from H5private.h
* --with-dmalloc= Autotools configure option
* HDF5_ENABLE_USING_DMALLOC CMake option
Diffstat (limited to 'src')
-rw-r--r-- | src/H5private.h | 7 | ||||
-rw-r--r-- | src/libhdf5.settings.in | 1 |
2 files changed, 0 insertions, 8 deletions
diff --git a/src/H5private.h b/src/H5private.h index 3525e2b..47132a0 100644 --- a/src/H5private.h +++ b/src/H5private.h @@ -227,13 +227,6 @@ #endif /* H5_HAVE_MPE */ /* - * dmalloc (debugging malloc) support - */ -#ifdef H5_HAVE_DMALLOC_H -#include "dmalloc.h" -#endif /* H5_HAVE_DMALLOC_H */ - -/* * NT doesn't define SIGBUS, but since NT only runs on processors * that do not have alignment constraints a SIGBUS would never be * raised, so we just replace it with SIGILL (which also should diff --git a/src/libhdf5.settings.in b/src/libhdf5.settings.in index 128e107..bcf307b 100644 --- a/src/libhdf5.settings.in +++ b/src/libhdf5.settings.in @@ -82,7 +82,6 @@ Parallel Filtered Dataset Writes: @PARALLEL_FILTERED_WRITES@ Mirror VFD: @MIRROR_VFD@ (Read-Only) S3 VFD: @ROS3_VFD@ (Read-Only) HDFS VFD: @HAVE_LIBHDFS@ - dmalloc: @HAVE_DMALLOC@ Packages w/ extra debug output: @INTERNAL_DEBUG_OUTPUT@ API tracing: @TRACE_API@ Using memory checker: @USINGMEMCHECKER@ |