[svn-r5310] Purpose:

Code cleanup

Description:
    Update the API tracing information

Platforms tested:
    Linux 2.2 (eirene) with gcc 2.95.2 and Solaris 2.6 (baldric) with gcc 2.8.1
This commit is contained in:
Quincey Koziol 2002-05-01 10:15:30 -05:00
parent f3671809b5
commit 6a5008e313

View File

@ -3466,6 +3466,7 @@ H5Pfill_value_defined(hid_t plist_id, H5D_fill_value_t *status)
herr_t ret_value = SUCCEED;
FUNC_ENTER(H5Pfill_value_defined, FAIL);
H5TRACE2("e","i*Df",plist_id,status);
assert(status);
@ -3509,6 +3510,7 @@ H5Pset_space_time(hid_t plist_id, H5D_space_time_t alloc_time)
herr_t ret_value = SUCCEED; /* return value */
FUNC_ENTER(H5Pset_space_time, FAIL);
H5TRACE2("e","iDs",plist_id,alloc_time);
/* Check args */
if(TRUE != H5P_isa_class(plist_id, H5P_DATASET_CREATE))
@ -3779,6 +3781,7 @@ H5Pset_fclose_degree(hid_t plist_id, H5F_close_degree_t degree)
herr_t ret_value=SUCCEED; /* return value */
FUNC_ENTER(H5Pset_fclose_degree, FAIL);
H5TRACE2("e","iFc",plist_id,degree);
/* Check args */
if(TRUE != H5P_isa_class(plist_id, H5P_FILE_ACCESS))
@ -5096,6 +5099,8 @@ H5Pcreate_class(hid_t parent, const char *name, unsigned hashsize,
hid_t ret_value = FAIL; /* Return value */
FUNC_ENTER(H5Pcreate_class, FAIL);
H5TRACE9("i","isIuxxxxxx",parent,name,hashsize,cls_create,create_data,
cls_copy,copy_data,cls_close,close_data);
/* Check arguments. */
if (H5P_DEFAULT!=parent && (H5I_GENPROP_CLS!=H5I_get_type(parent)))