diff options
author | Raymond Lu <songyulu@hdfgroup.org> | 2000-04-13 15:16:20 (GMT) |
---|---|---|
committer | Raymond Lu <songyulu@hdfgroup.org> | 2000-04-13 15:16:20 (GMT) |
commit | 0461ad7f43fb39efeae0e7ee0b9cc43a6a85b646 (patch) | |
tree | a13ce1c2a32106237eff9db7861b5d0eac29a6c2 /src/H5F.c | |
parent | cd6f954955e2e69a4d33d34cb376228d9bc93fef (diff) | |
download | hdf5-0461ad7f43fb39efeae0e7ee0b9cc43a6a85b646.zip hdf5-0461ad7f43fb39efeae0e7ee0b9cc43a6a85b646.tar.gz hdf5-0461ad7f43fb39efeae0e7ee0b9cc43a6a85b646.tar.bz2 |
[svn-r2137] Add SRB as a new VFL, add related info into these source codes.
Diffstat (limited to 'src/H5F.c')
-rw-r--r-- | src/H5F.c | 11 |
1 files changed, 9 insertions, 2 deletions
@@ -26,9 +26,10 @@ static char RcsId[] = "@(#)$Revision$"; #include <H5FDmpio.h> /*MPI-2 I/O */ #include <H5FDgass.h> /*GASS I/O */ #include <H5FDdpss.h> /*Grid Storage I/O */ +#include <H5FDsrb.h> /*SRB 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 */ +#include <H5FDsec2.h> /*Posix unbuffered I/O */ +#include <H5FDstdio.h> /* Standard C buffered I/O */ /* Packages needed by this file... */ #include <H5private.h> /*library functions */ @@ -170,6 +171,9 @@ H5F_init(void) * * Robb Matzke, 1999-02-19 * Added initialization for the H5I_FILE_CLOSING ID group. + * + * Raymond Lu, April 10, 2000 + * Put SRB into the 'Register predefined file drivers' list. *------------------------------------------------------------------------- */ static herr_t @@ -217,6 +221,9 @@ H5F_init_interface(void) #ifdef H5_HAVE_GRIDSTORAGE if ((status=H5FD_DPSS)<0) goto end_registration; #endif +#ifdef H5_HAVE_SRB + if ((status=H5FD_SRB)<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 |