summaryrefslogtreecommitdiffstats
path: root/src/H5FDdpss.h
diff options
context:
space:
mode:
authorAlbert Cheng <acheng@hdfgroup.org>2001-12-30 05:23:38 (GMT)
committerAlbert Cheng <acheng@hdfgroup.org>2001-12-30 05:23:38 (GMT)
commite22c09563636a72fbf6600685fcb14df6e069436 (patch)
tree6feecaaebc3cf8de207f5d74864d8b7bca6eb69b /src/H5FDdpss.h
parentbb0692aff25e35793dccf071a752f5b7faf1ae9a (diff)
downloadhdf5-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/H5FDdpss.h')
-rw-r--r--src/H5FDdpss.h39
1 files changed, 0 insertions, 39 deletions
diff --git a/src/H5FDdpss.h b/src/H5FDdpss.h
deleted file mode 100644
index fd9e2b8..0000000
--- a/src/H5FDdpss.h
+++ /dev/null
@@ -1,39 +0,0 @@
-/*
- * Copyright © 1999-2001 NCSA
- * All rights reserved.
- *
- * Programmer: Thomas Radke <tradke@aei-potsdam.mpg.de>
- * Monday, October 11, 1999
- *
- * Purpose: The public header file for the DPSS driver.
- */
-#ifndef H5FDdpss_H
-#define H5FDdpss_H
-
-#include "H5public.h" /* typedef for herr_t */
-#include "H5Ipublic.h" /* typedef for hid_t */
-
-#ifdef H5_HAVE_GRIDSTORAGE
-#define H5FD_DPSS (H5FD_dpss_init())
-#else
-#define H5FD_DPSS (-1)
-#endif
-
-/* Function prototypes */
-#ifdef H5_HAVE_GRIDSTORAGE
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-hid_t H5FD_dpss_init(void);
-herr_t H5Pset_fapl_dpss (hid_t fapl_id);
-herr_t H5Pget_fapl_dpss (hid_t fapl_id);
-
-#ifdef __cplusplus
-}
-#endif
-
-#endif
-
-#endif /* H5FDdpss_H */