summaryrefslogtreecommitdiffstats
path: root/src/H5D.c
diff options
context:
space:
mode:
authorBill Wendling <wendling@ncsa.uiuc.edu>2003-09-19 19:27:17 (GMT)
committerBill Wendling <wendling@ncsa.uiuc.edu>2003-09-19 19:27:17 (GMT)
commitce5a4cf6f344e77536a8fdc728d36556d1f9e889 (patch)
tree06103884470b3f033ec098036a8c450b6beb5097 /src/H5D.c
parente38803837f7f6357bff03bf6ad9c04ace52d38e3 (diff)
downloadhdf5-ce5a4cf6f344e77536a8fdc728d36556d1f9e889.zip
hdf5-ce5a4cf6f344e77536a8fdc728d36556d1f9e889.tar.gz
hdf5-ce5a4cf6f344e77536a8fdc728d36556d1f9e889.tar.bz2
[svn-r7495] Purpose:
Removed Dead Code Description: Some of the FPHDF5 code was dead (I thought it'd be useful at one point, but was wrong). Solution: Removed Platforms tested: Linux (FPHDF5 specific. No need for h5committest) Misc. update:
Diffstat (limited to 'src/H5D.c')
-rw-r--r--src/H5D.c14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/H5D.c b/src/H5D.c
index 05a7751..0de1e56 100644
--- a/src/H5D.c
+++ b/src/H5D.c
@@ -30,12 +30,6 @@
#include "H5Sprivate.h" /* Dataspaces */
#include "H5Vprivate.h" /* Vectors and arrays */
-#ifdef H5_HAVE_FPHDF5
-#define H5F_PACKAGE /*suppress error about including H5Fpkg */
-
-#include "H5Fpkg.h" /* File access */
-#endif /* H5_HAVE_FPHDF5 */
-
/*#define H5D_DEBUG*/
/* Interface initialization */
@@ -1833,14 +1827,6 @@ H5D_create(H5G_entry_t *loc, const char *name, hid_t type_id, const H5S_t *space
if (H5D_update_entry_info(file, dxpl_id, new_dset, dc_plist) != SUCCEED)
HGOTO_ERROR(H5E_DATASET, H5E_CANTINIT, NULL, "can't update the metadata cache")
-#ifdef H5_HAVE_FPHDF5
- /* FPHDF5 is all about independent writes */
- if (H5FD_is_fphdf5_driver(file->shared->lf))
- if (H5Pset_dxpl_fphdf5(dxpl_id, H5FD_MPIO_INDEPENDENT) < 0)
- HGOTO_ERROR(H5E_PLIST, H5E_CANTSET, NULL,
- "unable to set xfer property list to independent write")
-#endif /* H5_HAVE_FPHDF5 */
-
/*
* Give the dataset a name. That is, create and add a new
* "H5G_entry_t" object to the group this dataset is being initially