summaryrefslogtreecommitdiffstats
path: root/src/H5Pdapl.c
diff options
context:
space:
mode:
authorHDF Tester <hdftest@hdfgroup.org>2008-11-16 11:04:24 (GMT)
committerHDF Tester <hdftest@hdfgroup.org>2008-11-16 11:04:24 (GMT)
commit2d445f880dc729d6815bdf56b2e8808382c80996 (patch)
tree2406eac0a8264b089a1a465f76724d65d462daee /src/H5Pdapl.c
parentfc65a0e6764ead4c0f76b131b7f9456ea5db8d42 (diff)
downloadhdf5-2d445f880dc729d6815bdf56b2e8808382c80996.zip
hdf5-2d445f880dc729d6815bdf56b2e8808382c80996.tar.gz
hdf5-2d445f880dc729d6815bdf56b2e8808382c80996.tar.bz2
[svn-r16078] Snapshot version 1.9 release 23
Diffstat (limited to 'src/H5Pdapl.c')
-rw-r--r--src/H5Pdapl.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/H5Pdapl.c b/src/H5Pdapl.c
index eefcca6..a4d036d 100644
--- a/src/H5Pdapl.c
+++ b/src/H5Pdapl.c
@@ -182,6 +182,7 @@ H5Pset_chunk_cache(hid_t dapl_id, size_t rdcc_nslots, size_t rdcc_nbytes, double
herr_t ret_value = SUCCEED; /* return value */
FUNC_ENTER_API(H5Pset_chunk_cache, FAIL);
+ H5TRACE4("e", "izzd", dapl_id, rdcc_nslots, rdcc_nbytes, rdcc_w0);
/* Check arguments. Note that we allow negative values - they are
* considered to "unset" the property. */
@@ -233,6 +234,7 @@ H5Pget_chunk_cache(hid_t dapl_id, size_t *rdcc_nslots, size_t *rdcc_nbytes, doub
herr_t ret_value = SUCCEED; /* return value */
FUNC_ENTER_API(H5Pget_chunk_cache, FAIL);
+ H5TRACE4("e", "i*z*z*d", dapl_id, rdcc_nslots, rdcc_nbytes, rdcc_w0);
/* Get the plist structure */
if (NULL == (plist = H5P_object_verify(dapl_id, H5P_DATASET_ACCESS)))