mirror of
https://github.com/HDFGroup/hdf5.git
synced 2025-03-13 16:47:58 +08:00
[svn-r2853] ./hdf5/src/H5T.c
* 2000-11-10 Robb Matzke <matzke@llnl.gov> Updated API tracing calls.
This commit is contained in:
parent
165359045e
commit
407c7100e3
@ -3335,6 +3335,7 @@ H5Tget_member_class(hid_t type_id, int membno)
|
||||
H5T_class_t ret_value = H5T_NO_CLASS;
|
||||
|
||||
FUNC_ENTER(H5Tget_member_class, H5T_NO_CLASS);
|
||||
H5TRACE2("Tt","iIs",type_id,membno);
|
||||
|
||||
/* Check args */
|
||||
if (H5I_DATATYPE != H5I_get_type(type_id) ||
|
||||
@ -6891,7 +6892,7 @@ H5Tarray_create(hid_t base_id, int ndims, const hsize_t dim[/* ndims */],
|
||||
hid_t ret_value = FAIL; /* return value */
|
||||
|
||||
FUNC_ENTER(H5Tarray_create, FAIL);
|
||||
H5TRACE1("i","i",base_id);
|
||||
H5TRACE4("i","iIs*h*Is",base_id,ndims,dim,perm);
|
||||
|
||||
/* Check args */
|
||||
if (ndims<1 || ndims>H5S_MAX_RANK)
|
||||
@ -7009,6 +7010,7 @@ H5Tget_array_ndims(hid_t type_id)
|
||||
int ret_value = FAIL; /* return value */
|
||||
|
||||
FUNC_ENTER(H5Tget_array_ndims, FAIL);
|
||||
H5TRACE1("Is","i",type_id);
|
||||
|
||||
/* Check args */
|
||||
if (H5I_DATATYPE!=H5I_get_type(type_id) || NULL==(dt=H5I_object(type_id)))
|
||||
@ -7046,6 +7048,7 @@ H5Tget_array_dims(hid_t type_id, hsize_t dims[], int perm[])
|
||||
intn i; /* Local index variable */
|
||||
|
||||
FUNC_ENTER(H5Tget_array_dims, FAIL);
|
||||
H5TRACE3("e","i*h*Is",type_id,dims,perm);
|
||||
|
||||
/* Check args */
|
||||
if (H5I_DATATYPE!=H5I_get_type(type_id) || NULL==(dt=H5I_object(type_id)))
|
||||
|
Loading…
x
Reference in New Issue
Block a user