diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2010-04-27 22:15:14 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2010-04-27 22:15:14 (GMT) |
commit | b9ca2f8f6f045b4a4d08b4412910c65966e42616 (patch) | |
tree | fae192480a7479bee052e6d996e6654046480a1b /src/H5EA.c | |
parent | 6c5e42a96720ccd4c7b517af8c00c658112dc7af (diff) | |
download | hdf5-b9ca2f8f6f045b4a4d08b4412910c65966e42616.zip hdf5-b9ca2f8f6f045b4a4d08b4412910c65966e42616.tar.gz hdf5-b9ca2f8f6f045b4a4d08b4412910c65966e42616.tar.bz2 |
[svn-r18650] Description:
Bring back various minor tweaks & cleanups from the revise_chunks
branch.
Tested on:
FreeBSD/32 6.3 (duty) in debug mode
FreeBSD/64 6.3 (liberty) w/C++ & FORTRAN, in debug mode
Linux/32 2.6 (jam) w/PGI compilers, w/default API=1.8.x,
w/C++ & FORTRAN, w/threadsafe, in debug mode
Linux/64-amd64 2.6 (amani) w/Intel compilers, w/default API=1.6.x,
w/C++ & FORTRAN, in production mode
Solaris/32 2.10 (linew) w/deprecated symbols disabled, w/C++ & FORTRAN,
w/szip filter, in production mode
Linux/64-ia64 2.6 (cobalt) w/Intel compilers, w/C++ & FORTRAN,
in production mode
Linux/64-ia64 2.4 (tg-login3) w/parallel, w/FORTRAN, in debug mode
Linux/64-amd64 2.6 (abe) w/parallel, w/FORTRAN, in production mode
Diffstat (limited to 'src/H5EA.c')
-rw-r--r-- | src/H5EA.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -87,7 +87,7 @@ typedef herr_t (*H5EA__unprotect_func_t)(void *thing, hid_t dxpl_id, extern const H5EA_class_t H5EA_CLS_TEST[1]; const H5EA_class_t *const H5EA_client_class_g[] = { - H5EA_CLS_TEST, /* 0 - H5EA_TEST_ID */ + H5EA_CLS_TEST, /* ? - H5EA_CLS_TEST_ID */ }; @@ -820,7 +820,7 @@ HDfprintf(stderr, "%s: Called\n", FUNC); /* Set the shared array header's file context for this operation */ hdr->f = ea->f; - /* Set up flush dependency between child_entry and metadata array 'thing' */ + /* Set up flush dependency between parent entry and extensible array header */ if(H5EA__create_flush_depend(parent_entry, (H5AC_info_t *)hdr) < 0) H5E_THROW(H5E_CANTDEPEND, "unable to create flush dependency on file metadata") @@ -863,7 +863,7 @@ HDfprintf(stderr, "%s: Called\n", FUNC); /* Set the shared array header's file context for this operation */ hdr->f = ea->f; - /* Remove flush dependency between child_entry and metadata array 'thing' */ + /* Remove flush dependency between parent entry and extensible array header */ if(H5EA__destroy_flush_depend(parent_entry, (H5AC_info_t *)hdr) < 0) H5E_THROW(H5E_CANTUNDEPEND, "unable to destroy flush dependency on file metadata") |