summaryrefslogtreecommitdiffstats
path: root/src/H5F.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2004-04-07 19:10:59 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2004-04-07 19:10:59 (GMT)
commitad62490f6c3bcd6dcb95ab8095b1b3088b3fa4e2 (patch)
tree29ead8bd1fdc974bc487c5f81ac701ec99be42e3 /src/H5F.c
parentdedb402f2ecf65e2f5a43bc64d3fd66690961c7d (diff)
downloadhdf5-ad62490f6c3bcd6dcb95ab8095b1b3088b3fa4e2.zip
hdf5-ad62490f6c3bcd6dcb95ab8095b1b3088b3fa4e2.tar.gz
hdf5-ad62490f6c3bcd6dcb95ab8095b1b3088b3fa4e2.tar.bz2
[svn-r8317] Purpose:
Code optimization Description: Query the dataset creation and transfer properties less often. Platforms tested: Solaris 2.7 (arabica) FreeBSD 4.9 (sleipnir) w/parallel h5committested
Diffstat (limited to 'src/H5F.c')
-rw-r--r--src/H5F.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/H5F.c b/src/H5F.c
index 5748d8b..8af4e66 100644
--- a/src/H5F.c
+++ b/src/H5F.c
@@ -3074,8 +3074,12 @@ H5F_close(H5F_t *f)
/* Only flush at this point if the file will be closed */
if (closing) {
/* Dump debugging info */
+#ifdef H5AC_DEBUG
H5AC_debug(f);
+#endif /* H5AC_DEBUG */
+#ifdef H5F_ISTORE_DEBUG
H5F_istore_stats(f, FALSE);
+#endif /* H5F_ISTORE_DEBUG */
/* Only try to flush the file if it was opened with write access */
if(f->intent&H5F_ACC_RDWR) {