diff options
author | Mike McGreevy <mamcgree@hdfgroup.org> | 2010-06-16 15:17:39 (GMT) |
---|---|---|
committer | Mike McGreevy <mamcgree@hdfgroup.org> | 2010-06-16 15:17:39 (GMT) |
commit | 1c8ec63a3deefff0123f15e94c9c8b9209046293 (patch) | |
tree | 56a7b84a232e3cec387bba74577202ee54ff0bed /src/H5Gstab.c | |
parent | 686d856802341c3e6389532ee2b3617b74f6c0ce (diff) | |
download | hdf5-1c8ec63a3deefff0123f15e94c9c8b9209046293.zip hdf5-1c8ec63a3deefff0123f15e94c9c8b9209046293.tar.gz hdf5-1c8ec63a3deefff0123f15e94c9c8b9209046293.tar.bz2 |
[svn-r19008] Purpose:
Fix some tagging issues.
Description:
- changed H5Gcreate to H5Gcreate2 in the cache_tagging.c
test file to work properly with 1.6 API default
mapping turned on.
- Added FUNC_ENTER/LEAVE_*TAG macros to the
H5G_stab_valid function.
Tested:
gandalf, jam, amani (w/ production mode, 1.6 API mapping)
Diffstat (limited to 'src/H5Gstab.c')
-rw-r--r-- | src/H5Gstab.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/H5Gstab.c b/src/H5Gstab.c index 31ee008..0566725 100644 --- a/src/H5Gstab.c +++ b/src/H5Gstab.c @@ -1005,7 +1005,7 @@ H5G_stab_valid(H5O_loc_t *grp_oloc, hid_t dxpl_id, H5O_stab_t *alt_stab) hbool_t changed = FALSE; /* Whether stab has been modified */ herr_t ret_value = SUCCEED; /* Return value */ - FUNC_ENTER_NOAPI(H5G_stab_valid, FAIL) + FUNC_ENTER_NOAPI_TAG(H5G_stab_valid, dxpl_id, grp_oloc->addr, FAIL) /* Read the symbol table message */ if(NULL == H5O_msg_read(grp_oloc, H5O_STAB_ID, &stab, dxpl_id)) @@ -1051,7 +1051,7 @@ done: if(heap && H5HL_unprotect(heap) < 0) HDONE_ERROR(H5E_SYM, H5E_PROTECT, FAIL, "unable to unprotect symbol table heap") - FUNC_LEAVE_NOAPI(ret_value) + FUNC_LEAVE_NOAPI_TAG(ret_value, FAIL) } /* end H5G_stab_valid */ #endif /* H5_STRICT_FORMAT_CHECKS */ |