summaryrefslogtreecommitdiffstats
path: root/src/H5FD.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2002-06-19 17:07:52 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2002-06-19 17:07:52 (GMT)
commit3659ae4176434e7b81af4f49f6578d7dd0807f76 (patch)
treeb808963ffc5eed752e18629422f0bbbb772bf67b /src/H5FD.c
parentea052ffd55cabca3ef756a7f44e7f3f2fa32b679 (diff)
downloadhdf5-3659ae4176434e7b81af4f49f6578d7dd0807f76.zip
hdf5-3659ae4176434e7b81af4f49f6578d7dd0807f76.tar.gz
hdf5-3659ae4176434e7b81af4f49f6578d7dd0807f76.tar.bz2
[svn-r5677] Purpose:
Code improvement Description: Some small code cleanups and took out the code the was turning off the metadata cache for parallel I/O (!) Platforms tested: IRIX64 6.5 (modi4) w/parallel
Diffstat (limited to 'src/H5FD.c')
-rw-r--r--src/H5FD.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/H5FD.c b/src/H5FD.c
index f0e1aad..d905fdf 100644
--- a/src/H5FD.c
+++ b/src/H5FD.c
@@ -2233,7 +2233,7 @@ H5FD_read(H5FD_t *file, H5FD_mem_t type, hid_t dxpl_id, haddr_t addr, size_t siz
/* collective transfer. */
/* The no-op case */
if (0==size) HRETURN(SUCCEED);
-#endif
+#endif /* H5_HAVE_PARALLEL */
/* Check if this information is in the metadata accumulator */
if((file->feature_flags&H5FD_FEAT_ACCUMULATE_METADATA) && type!=H5FD_MEM_DRAW) {
@@ -2457,7 +2457,7 @@ H5FD_write(H5FD_t *file, H5FD_mem_t type, hid_t dxpl_id, haddr_t addr, size_t si
/* collective transfer. */
/* The no-op case */
if (0==size) HRETURN(SUCCEED);
-#endif
+#endif /* H5_HAVE_PARALLEL */
/* Check for accumulating metadata */
if((file->feature_flags&H5FD_FEAT_ACCUMULATE_METADATA) && type!=H5FD_MEM_DRAW) {