diff options
author | HDF Tester <hdftest@hdfgroup.org> | 2008-09-01 04:50:51 (GMT) |
---|---|---|
committer | HDF Tester <hdftest@hdfgroup.org> | 2008-09-01 04:50:51 (GMT) |
commit | 9c9337e3fdd7c2d9ab145cc83b97f94ae178e344 (patch) | |
tree | dd4cfc2f36476884587eb08787c54dc46fddffe4 /src/H5I.c | |
parent | c9af566e1d88896b58fb7be02385e63fc7932931 (diff) | |
download | hdf5-9c9337e3fdd7c2d9ab145cc83b97f94ae178e344.zip hdf5-9c9337e3fdd7c2d9ab145cc83b97f94ae178e344.tar.gz hdf5-9c9337e3fdd7c2d9ab145cc83b97f94ae178e344.tar.bz2 |
[svn-r15567] Snapshot version 1.8 release 1 (snap2)
Diffstat (limited to 'src/H5I.c')
-rw-r--r-- | src/H5I.c | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -391,6 +391,7 @@ H5Itype_exists(H5I_type_t type) htri_t ret_value = TRUE; /* Return value */ FUNC_ENTER_API(H5Itype_exists, FAIL) + H5TRACE1("t", "It", type); if(type <= H5I_BADID || type >= H5I_next_type) HGOTO_ERROR(H5E_ARGS, H5E_BADRANGE, FAIL, "invalid type number") @@ -433,6 +434,7 @@ H5Inmembers(H5I_type_t type, hsize_t *num_members) int ret_value = SUCCEED; /* Return value */ FUNC_ENTER_API(H5Inmembers, FAIL) + H5TRACE2("e", "It*h", type, num_members); if(H5I_IS_LIB_TYPE(type)) HGOTO_ERROR(H5E_ATOM, H5E_BADGROUP, FAIL, "cannot call public function on library type") @@ -522,6 +524,7 @@ H5Iclear_type(H5I_type_t type, hbool_t force) herr_t ret_value; /* Return value */ FUNC_ENTER_API(H5Iclear_type, FAIL) + H5TRACE2("e", "Itb", type, force); if(H5I_IS_LIB_TYPE(type)) HGOTO_ERROR(H5E_ATOM, H5E_BADGROUP, FAIL, "cannot call public function on library type") @@ -703,6 +706,7 @@ H5Idestroy_type(H5I_type_t type) herr_t ret_value; /* Return value */ FUNC_ENTER_API(H5Idestroy_type, FAIL) + H5TRACE1("e", "It", type); if(H5I_IS_LIB_TYPE(type)) HGOTO_ERROR(H5E_ATOM, H5E_BADGROUP, FAIL, "cannot call public function on library type") @@ -782,6 +786,7 @@ H5Iregister(H5I_type_t type, void *object) hid_t ret_value; /* Return value */ FUNC_ENTER_API(H5Iregister, H5I_INVALID_HID) + H5TRACE2("i", "It*x", type, object); if(H5I_IS_LIB_TYPE(type)) HGOTO_ERROR(H5E_ATOM, H5E_BADGROUP, FAIL, "cannot call public function on library type") @@ -1685,6 +1690,7 @@ H5Idec_type_ref(H5I_type_t type) herr_t ret_value; /* Return value */ FUNC_ENTER_API(H5Idec_type_ref, FAIL) + H5TRACE1("e", "It", type); if(H5I_IS_LIB_TYPE(type)) HGOTO_ERROR(H5E_ATOM, H5E_BADGROUP, FAIL, "cannot call public function on library type") |