diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2006-11-17 21:02:48 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2006-11-17 21:02:48 (GMT) |
commit | 7205052027f271177c84f5df4f17df5a8f344294 (patch) | |
tree | 952dba343bda5ba19845ce10bd4579b70236ceac /src/H5L.c | |
parent | 0ede5b8c9c70e7e86b0d0aba1382bbe685ca3c62 (diff) | |
download | hdf5-7205052027f271177c84f5df4f17df5a8f344294.zip hdf5-7205052027f271177c84f5df4f17df5a8f344294.tar.gz hdf5-7205052027f271177c84f5df4f17df5a8f344294.tar.bz2 |
[svn-r12940] Description:
Add some more types to tracing script and regenerate TRACE macros, etc.
Tested on:
Linux/32 2.4 (heping)
Diffstat (limited to 'src/H5L.c')
-rw-r--r-- | src/H5L.c | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -695,6 +695,7 @@ H5Ldelete_by_idx(hid_t loc_id, const char *group_name, herr_t ret_value = SUCCEED; /* Return value */ FUNC_ENTER_API(H5Ldelete_by_idx, FAIL) + H5TRACE6("e","isLiIohi",loc_id,group_name,idx_type,order,n,lapl_id); /* Check arguments */ if(H5G_loc(loc_id, &loc) < 0) @@ -796,6 +797,8 @@ H5Lget_val_by_idx(hid_t loc_id, const char *group_name, H5L_index_t idx_type, herr_t ret_value = SUCCEED; /* Return value */ FUNC_ENTER_API(H5Lget_val_by_idx, FAIL) + H5TRACE8("e","isLiIohxzi",loc_id,group_name,idx_type,order,n,buf,size, + lapl_id); /* Check arguments */ if(H5G_loc(loc_id, &loc)) @@ -888,6 +891,8 @@ H5Lget_info_by_idx(hid_t loc_id, const char *group_name, herr_t ret_value = SUCCEED; /* Return value */ FUNC_ENTER_API(H5Lget_info_by_idx, FAIL) + H5TRACE7("e","isLiIohxi",loc_id,group_name,idx_type,order,n,linkbuf, + lapl_id); /* Check arguments */ if(H5G_loc(loc_id, &loc)) @@ -1065,6 +1070,8 @@ H5Lget_name_by_idx(hid_t loc_id, const char *group_name, ssize_t ret_value; /* Return value */ FUNC_ENTER_API(H5Lget_name_by_idx, FAIL) + H5TRACE8("Zs","isLiIohxzi",loc_id,group_name,idx_type,order,n,name,size, + lapl_id); /* Check arguments */ if(H5G_loc(loc_id, &loc)) @@ -1123,6 +1130,8 @@ H5Literate(hid_t loc_id, const char *group_name, herr_t ret_value; /* Return value */ FUNC_ENTER_API(H5Literate, FAIL) + H5TRACE8("e","isLiIo*hxxi",loc_id,group_name,idx_type,order,idx_p,op, + op_data,lapl_id); /* Check arguments */ if(!group_name || !*group_name) |