diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2003-06-24 15:37:24 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2003-06-24 15:37:24 (GMT) |
commit | 600a17154606f6b1b91873f70eb215e43d85edaa (patch) | |
tree | a644e1b19a159594db2b241121a89886878c466a /perform/pio_engine.c | |
parent | 30ede4622e7493e481254af2d63fd8ecb814c1b3 (diff) | |
download | hdf5-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.c | 11 |
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); |