summaryrefslogtreecommitdiffstats
path: root/src/H5F.c
diff options
context:
space:
mode:
authorRaymond Lu <songyulu@hdfgroup.org>1999-12-21 22:17:55 (GMT)
committerRaymond Lu <songyulu@hdfgroup.org>1999-12-21 22:17:55 (GMT)
commit173c0b6fe54eef89988048c928b703544d8baf92 (patch)
treeb74e9cf7cb454ac925d4b71883c6b381b46aee86 /src/H5F.c
parentada76449ba652add37f72608c714943f9d4fdd9d (diff)
downloadhdf5-173c0b6fe54eef89988048c928b703544d8baf92.zip
hdf5-173c0b6fe54eef89988048c928b703544d8baf92.tar.gz
hdf5-173c0b6fe54eef89988048c928b703544d8baf92.tar.bz2
[svn-r1925] DPSS is checked in.
Diffstat (limited to 'src/H5F.c')
-rw-r--r--src/H5F.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/H5F.c b/src/H5F.c
index cb067b3..10df2cd 100644
--- a/src/H5F.c
+++ b/src/H5F.c
@@ -25,6 +25,7 @@ static char RcsId[] = "@(#)$Revision$";
#include <H5FDfamily.h> /*family of files */
#include <H5FDmpio.h> /*MPI-2 I/O */
#include <H5FDgass.h> /*GASS I/O */
+#include <H5FDdpss.h> /*DPSS I/O */
#include <H5FDmulti.h> /*multiple files partitioned by mem usage */
#include <H5FDsec2.h> /*Posix unbuffered I/O */
#include <H5FDstdio.h> /* Standard C buffered I/O */
@@ -95,6 +96,10 @@ H5F_xfer_t H5F_xfer_dflt = {
NULL, /*No information needed for free() calls */
-2, /*See H5Pget_driver() */
NULL, /*No file driver-specific information yet */
+#ifdef COALESCE_READS
+ 0, /*coalesce single reads into a read */
+ /*transaction */
+#endif
};
/*
@@ -209,6 +214,9 @@ H5F_init_interface(void)
#ifdef H5_HAVE_GASS
if ((status=H5FD_GASS)<0) goto end_registration;
#endif
+#ifdef HAVE_DPSS
+ if ((status=H5FD_DPSS)<0) goto end_registration;
+#endif
if ((status=H5FD_CORE)<0) goto end_registration;
if ((status=H5FD_MULTI)<0) goto end_registration;
#ifdef H5_HAVE_PARALLEL