diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2004-07-26 04:41:52 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2004-07-26 04:41:52 (GMT) |
commit | 631e94869b7c0c4e7f053f06769b7b4550216a63 (patch) | |
tree | 79eb6b19b53c316c35845492f4c854692c221ead /release_docs/RELEASE.txt | |
parent | 881ba16bcab480daf7144c193eac356e532ac14c (diff) | |
download | hdf5-631e94869b7c0c4e7f053f06769b7b4550216a63.zip hdf5-631e94869b7c0c4e7f053f06769b7b4550216a63.tar.gz hdf5-631e94869b7c0c4e7f053f06769b7b4550216a63.tar.bz2 |
[svn-r8947] Purpose:
Code cleanup, sorta
Description:
Added ifdef sections for "H5_USING_PURIFY" in various places in the code,
which are designed to reduce the spurious "uninitialized memory read" warnings
from purify which are actually OK. Note that this macro will have to be
turned on by adding it to the CFLAGS for the build - I didn't think it was
important enough to add a configure flag for.
Also, the changes in H5HG.c optimize the walks through the objects in a
heap to only look at the 'used' entries instead of all the 'allocated' entries.
Platforms tested:
Solaris 2.7 (arabica) w/purify
Not tested by h5committest
Diffstat (limited to 'release_docs/RELEASE.txt')
-rw-r--r-- | release_docs/RELEASE.txt | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/release_docs/RELEASE.txt b/release_docs/RELEASE.txt index e0c28a5..65ce589 100644 --- a/release_docs/RELEASE.txt +++ b/release_docs/RELEASE.txt @@ -38,6 +38,11 @@ New Features Configuration: -------------- + - Added some initial support for making purify (or similar memory + checking products) happier by initializing buffers to zero and + disabling the internal free list code. To take advantage of this, + define 'H5_USING_PURIFY' in your CFLAGS when building the library. + QAK - 2004/07/23 Library: -------- |