diff options
author | Bill Wendling <wendling@ncsa.uiuc.edu> | 2003-09-19 19:27:17 (GMT) |
---|---|---|
committer | Bill Wendling <wendling@ncsa.uiuc.edu> | 2003-09-19 19:27:17 (GMT) |
commit | ce5a4cf6f344e77536a8fdc728d36556d1f9e889 (patch) | |
tree | 06103884470b3f033ec098036a8c450b6beb5097 /src/H5D.c | |
parent | e38803837f7f6357bff03bf6ad9c04ace52d38e3 (diff) | |
download | hdf5-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.c | 14 |
1 files changed, 0 insertions, 14 deletions
@@ -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 |