diff options
author | Neil Fortner <nfortne2@hdfgroup.org> | 2009-04-16 21:06:37 (GMT) |
---|---|---|
committer | Neil Fortner <nfortne2@hdfgroup.org> | 2009-04-16 21:06:37 (GMT) |
commit | b04489e6ceb9f8df7d6b1e06cc292c6c1525ef8f (patch) | |
tree | eba6be179abf9078337cc240b18358388d32690a | |
parent | 0f48df5d505c50a81272a38df139dc9d728e822f (diff) | |
download | hdf5-b04489e6ceb9f8df7d6b1e06cc292c6c1525ef8f.zip hdf5-b04489e6ceb9f8df7d6b1e06cc292c6c1525ef8f.tar.gz hdf5-b04489e6ceb9f8df7d6b1e06cc292c6c1525ef8f.tar.bz2 |
[svn-r16766] Fix a comment in H5Pdapl.c, update RELEASE.txt with chages to factory free
lists.
Tested: kate
-rw-r--r-- | release_docs/RELEASE.txt | 4 | ||||
-rw-r--r-- | src/H5Pdapl.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/release_docs/RELEASE.txt b/release_docs/RELEASE.txt index 90d9c69..6a4eb76 100644 --- a/release_docs/RELEASE.txt +++ b/release_docs/RELEASE.txt @@ -53,6 +53,10 @@ New Features Library: -------- + - Separated "factory" free list class from block free lists. These free + lists are dynamically created and manage blocks of a fixed size. + H5set_free_list_limits() will use the same settings specified for block + free lists for factory free lists. (NAF - 2009/04/08) - Added support for dense attributes to H5Ocopy. (XCao/NAF - 2009/01/29) - Added H5Pset_elink_cb and H5Pget_elink_cb functions to support a user-defined callback function for external link traversal. diff --git a/src/H5Pdapl.c b/src/H5Pdapl.c index a4d036d..db66366 100644 --- a/src/H5Pdapl.c +++ b/src/H5Pdapl.c @@ -154,7 +154,7 @@ done: * property list. Each of thhese values can be individually unset * (or not set at all) by passing the macros: * H5D_CHUNK_CACHE_NCHUNKS_DEFAULT, - * H5D_CHUNK_CACHE_NBYTES_DEFAULT, and/or + * H5D_CHUNK_CACHE_NSLOTS_DEFAULT, and/or * H5D_CHUNK_CACHE_W0_DEFAULT * as appropriate. * |