summaryrefslogtreecommitdiffstats
path: root/perform/pio_engine.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2003-06-24 15:37:24 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2003-06-24 15:37:24 (GMT)
commit600a17154606f6b1b91873f70eb215e43d85edaa (patch)
treea644e1b19a159594db2b241121a89886878c466a /perform/pio_engine.c
parent30ede4622e7493e481254af2d63fd8ecb814c1b3 (diff)
downloadhdf5-600a17154606f6b1b91873f70eb215e43d85edaa.zip
hdf5-600a17154606f6b1b91873f70eb215e43d85edaa.tar.gz
hdf5-600a17154606f6b1b91873f70eb215e43d85edaa.tar.bz2
[svn-r7091] Purpose:
Code cleanup Description: Remove the fill-value option entirely, since the 1.5.x library's default behavior is now the same as the 1.4.x behavior and also there is no corresponding code for implementing fill-values with the POSIX or MPI-I/O tests. Platforms tested: FreeBSD 4.8 (sleipnir) w/parallel too small to need h5committest
Diffstat (limited to 'perform/pio_engine.c')
-rw-r--r--perform/pio_engine.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/perform/pio_engine.c b/perform/pio_engine.c
index 88a90e5..ff39399 100644
--- a/perform/pio_engine.c
+++ b/perform/pio_engine.c
@@ -685,17 +685,6 @@ do_write(results *res, file_descr *fd, parameters *parms, long ndsets,
} /* end if */
} /* end if */
-#ifdef H5_HAVE_NOFILL
- /* Disable writing fill values if asked */
- if(parms->h5_no_fill) {
- hrc = H5Pset_fill_time(h5dcpl, H5D_FILL_TIME_NEVER);
- if (hrc < 0) {
- fprintf(stderr, "HDF5 Property List Set failed\n");
- GOTOERROR(FAIL);
- } /* end if */
- } /* end if */
-#endif
-
sprintf(dname, "Dataset_%ld", ndset);
h5ds_id = H5Dcreate(fd->h5fd, dname, ELMT_H5_TYPE,
h5dset_space_id, h5dcpl);