summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2002-06-10 15:47:35 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2002-06-10 15:47:35 (GMT)
commitbdef89f41c4cb5486688bdcec1e137a636c47198 (patch)
tree0a8d7c19aeba5f8cf2bea8411cb116b2f47f70a1 /src
parent41aa2ec07316bafd2652d61f0fe2738610537f8f (diff)
downloadhdf5-bdef89f41c4cb5486688bdcec1e137a636c47198.zip
hdf5-bdef89f41c4cb5486688bdcec1e137a636c47198.tar.gz
hdf5-bdef89f41c4cb5486688bdcec1e137a636c47198.tar.bz2
[svn-r5563] Purpose:
New Feature Description: Add H5P[set|get]_small_data_block_size API function, per our discussions at last week's HDF5 meeting. Platforms tested: FreeBSD 4.5 (sleipnir)
Diffstat (limited to 'src')
-rw-r--r--src/H5P.c2
-rw-r--r--src/H5Ppublic.h2
2 files changed, 0 insertions, 4 deletions
diff --git a/src/H5P.c b/src/H5P.c
index 5efdabc..2e53233 100644
--- a/src/H5P.c
+++ b/src/H5P.c
@@ -4392,7 +4392,6 @@ done:
FUNC_LEAVE(ret_value);
} /* end H5Pget_hyper_vector_size() */
-#ifdef LATER
/*-------------------------------------------------------------------------
* Function: H5Pset_small_data_block_size
@@ -4485,7 +4484,6 @@ H5Pget_small_data_block_size(hid_t plist_id, hsize_t *size/*out*/)
done:
FUNC_LEAVE(ret_value);
} /* end H5Pget_small_data_block_size() */
-#endif /* LATER */
/*--------------------------------------------------------------------------
diff --git a/src/H5Ppublic.h b/src/H5Ppublic.h
index ab15cbd..1aeda30 100644
--- a/src/H5Ppublic.h
+++ b/src/H5Ppublic.h
@@ -262,10 +262,8 @@ __DLL__ herr_t H5Pget_sieve_buf_size(hid_t fapl_id, size_t *size/*out*/);
#endif /* H5_WANT_H5_V1_4_COMPAT */
__DLL__ herr_t H5Pset_hyper_vector_size(hid_t fapl_id, size_t size);
__DLL__ herr_t H5Pget_hyper_vector_size(hid_t fapl_id, size_t *size/*out*/);
-#ifdef LATER
__DLL__ herr_t H5Pset_small_data_block_size(hid_t fapl_id, hsize_t size);
__DLL__ herr_t H5Pget_small_data_block_size(hid_t fapl_id, hsize_t *size/*out*/);
-#endif /* LATER */
#ifdef __cplusplus
}