diff options
author | Albert Cheng <acheng@hdfgroup.org> | 2001-12-30 05:23:38 (GMT) |
---|---|---|
committer | Albert Cheng <acheng@hdfgroup.org> | 2001-12-30 05:23:38 (GMT) |
commit | e22c09563636a72fbf6600685fcb14df6e069436 (patch) | |
tree | 6feecaaebc3cf8de207f5d74864d8b7bca6eb69b /src/H5F.c | |
parent | bb0692aff25e35793dccf071a752f5b7faf1ae9a (diff) | |
download | hdf5-e22c09563636a72fbf6600685fcb14df6e069436.zip hdf5-e22c09563636a72fbf6600685fcb14df6e069436.tar.gz hdf5-e22c09563636a72fbf6600685fcb14df6e069436.tar.bz2 |
[svn-r4757] Purpose:
Removing the DPSS (gridstorage) driver source code.
Description:
The DPSS (using Grid-Storage) driver is retired.
Removed the configure option with-gridstorage from configure.in.
Cvs remove the following files
./src/H5FDdpss.c
./src/H5FDdpss.h
./test/dpss_read.c
./test/dpss_write.c
Regenerated Dependencies files (some had to be hand-edited since
'make depend' did not cover them.)
Removed reference to DPSS Virtual file driver from H5F.c.
Platforms tested:
modi4 (Parallel; -with-gass=...), eirene, arabica (fortran, cxx).
Diffstat (limited to 'src/H5F.c')
-rw-r--r-- | src/H5F.c | 4 |
1 files changed, 0 insertions, 4 deletions
@@ -23,7 +23,6 @@ #include "H5FDfamily.h" /*family of files */ #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 */ @@ -297,9 +296,6 @@ H5F_init_interface(void) #ifdef H5_HAVE_GASS if ((status=H5FD_GASS)<0) goto end_registration; #endif -#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 |