summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2012-04-01 22:46:07 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2012-04-01 22:46:07 (GMT)
commit03e9c8740cf0f726068991a0d857526ee94bc029 (patch)
tree195a4bf812879687de42194e8ea30411670fbaf1
parentd3363a465950a6b82c168ccd07d86234af9f5423 (diff)
downloadhdf5-03e9c8740cf0f726068991a0d857526ee94bc029.zip
hdf5-03e9c8740cf0f726068991a0d857526ee94bc029.tar.gz
hdf5-03e9c8740cf0f726068991a0d857526ee94bc029.tar.bz2
[svn-r22231] Description:
Bring r22229 from trunk to 1.8 branch: Add 'H5O_mcdt_search_cb_t' to bin/trace script and re-run the bin/reconfigure script. Tested on: FreeBSD/32 8.2 (loyalty) w/gcc4.6, w/C++ & FORTRAN, in debug mode FreeBSD/64 8.2 (freedom) w/gcc4.6, w/C++ & FORTRAN, in debug mode Linux/32 2.6 (jam) w/PGI compilers, w/default API=1.8.x, w/C++ & FORTRAN, w/threadsafe, in debug mode Linux/64-amd64 2.6 (koala) w/Intel compilers, w/default API=1.6.x, w/C++ & FORTRAN, in production mode
-rwxr-xr-xbin/trace1
-rw-r--r--src/H5Pocpypl.c2
2 files changed, 3 insertions, 0 deletions
diff --git a/bin/trace b/bin/trace
index e5caee3..188b858 100755
--- a/bin/trace
+++ b/bin/trace
@@ -117,6 +117,7 @@ $Source = "";
"H5MM_free_t" => "x",
"H5O_info_t" => "x",
"H5O_iterate_t" => "x",
+ "H5O_mcdt_search_cb_t" => "x",
"H5P_cls_create_func_t" => "x",
"H5P_cls_copy_func_t" => "x",
"H5P_cls_close_func_t" => "x",
diff --git a/src/H5Pocpypl.c b/src/H5Pocpypl.c
index 1aceab2..23f8e4b 100644
--- a/src/H5Pocpypl.c
+++ b/src/H5Pocpypl.c
@@ -577,6 +577,7 @@ H5Pset_mcdt_search_cb(hid_t plist_id, H5O_mcdt_search_cb_t func, void *op_data)
herr_t ret_value = SUCCEED; /* Return value */
FUNC_ENTER_API(FAIL)
+ H5TRACE3("e", "ix*x", plist_id, func, op_data);
/* Check if the callback function is NULL and the user data is non-NULL.
* This is almost certainly an error as the user data will not be used. */
@@ -625,6 +626,7 @@ H5Pget_mcdt_search_cb(hid_t plist_id, H5O_mcdt_search_cb_t *func, void **op_data
herr_t ret_value = SUCCEED; /* Return value */
FUNC_ENTER_API(FAIL)
+ H5TRACE3("e", "i*x**x", plist_id, func, op_data);
/* Get the plist structure */
if(NULL == (plist = H5P_object_verify(plist_id, H5P_OBJECT_COPY)))