diff options
author | Mike McGreevy <mamcgree@hdfgroup.org> | 2008-11-18 20:22:51 (GMT) |
---|---|---|
committer | Mike McGreevy <mamcgree@hdfgroup.org> | 2008-11-18 20:22:51 (GMT) |
commit | 374f8f9da5cbe8ad9523f600989560dc110de40f (patch) | |
tree | 4a31eebaf31eda6be264859d48c6a9bc59864051 /src | |
parent | e012505802452518fff2cb17bfbb546a702ac9a9 (diff) | |
download | hdf5-374f8f9da5cbe8ad9523f600989560dc110de40f.zip hdf5-374f8f9da5cbe8ad9523f600989560dc110de40f.tar.gz hdf5-374f8f9da5cbe8ad9523f600989560dc110de40f.tar.bz2 |
[svn-r16096] Purpose: Updating bin/reconfigure script
Updating bin/reconfigure script to point to autotools in /mnt/hdf/packages,
since /home1/packages no longer exists.
Tested: kagiso
Diffstat (limited to 'src')
-rw-r--r-- | src/H5I.c | 1 | ||||
-rw-r--r-- | src/H5Pdapl.c | 2 |
2 files changed, 3 insertions, 0 deletions
@@ -1867,6 +1867,7 @@ H5Iis_valid(hid_t id) htri_t ret_value = TRUE; /* Return value */ FUNC_ENTER_API(H5Iis_valid, FAIL) + H5TRACE1("t", "i", id); type = H5I_TYPE(id); /* Check for conditions that would cause H5I_find_id to throw an assertion */ 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))) |