diff options
author | Thomas Radke <tradke@aei.mpg.de> | 2000-09-15 11:42:53 (GMT) |
---|---|---|
committer | Thomas Radke <tradke@aei.mpg.de> | 2000-09-15 11:42:53 (GMT) |
commit | b4844aabb3a46c09d9c833b5c91bffd4a4381cf2 (patch) | |
tree | 664e083249c69a05dc6424364bd8edc53df4c224 /src/H5F.c | |
parent | faeae783e4463916ccafdd960ee9a07550a61cde (diff) | |
download | hdf5-b4844aabb3a46c09d9c833b5c91bffd4a4381cf2.zip hdf5-b4844aabb3a46c09d9c833b5c91bffd4a4381cf2.tar.gz hdf5-b4844aabb3a46c09d9c833b5c91bffd4a4381cf2.tar.bz2 |
[svn-r2557] Purpose:
Added registration of the Stream Virtual File Driver.
Description:
The Stream VFD is registered here if it was configured.
Diffstat (limited to 'src/H5F.c')
-rw-r--r-- | src/H5F.c | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -26,6 +26,7 @@ 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 <H5FDstream.h> /*in-memory files streamed via sockets */ #include <H5FDsrb.h> /*SRB I/O */ #include <H5FDmulti.h> /*multiple files partitioned by mem usage */ #include <H5FDsec2.h> /*Posix unbuffered I/O */ @@ -185,6 +186,9 @@ H5F_init(void) * * Raymond Lu, April 10, 2000 * Put SRB into the 'Register predefined file drivers' list. + * + * Thomas Radke, 2000-09-12 + * Put Stream VFD into the 'Register predefined file drivers' list. *------------------------------------------------------------------------- */ static herr_t @@ -240,6 +244,9 @@ H5F_init_interface(void) #ifdef H5_HAVE_PARALLEL if ((status=H5FD_MPIO)<0) goto end_registration; #endif +#ifdef H5_HAVE_STREAM + if ((status=H5FD_STREAM)<0) goto end_registration; +#endif end_registration: ; } H5E_END_TRY; |