Fixed problems that prevent bin/trace from marking up some functions.

This commit is contained in:
Dana Robinson 2017-04-20 20:19:15 -04:00
parent c0a8eb362c
commit 87ceb78392
3 changed files with 12 additions and 18 deletions

View File

@ -942,7 +942,7 @@ H5allocate_memory(size_t size, hbool_t clear)
{
void *ret_value = NULL;
FUNC_ENTER_API_NOINIT;
FUNC_ENTER_API_NOINIT
H5TRACE2("*x", "zb", size, clear);
if(clear)
@ -983,7 +983,7 @@ H5resize_memory(void *mem, size_t size)
{
void *ret_value = NULL;
FUNC_ENTER_API_NOINIT;
FUNC_ENTER_API_NOINIT
H5TRACE2("*x", "*xz", mem, size);
ret_value = H5MM_realloc(mem, size);
@ -1007,7 +1007,7 @@ H5resize_memory(void *mem, size_t size)
herr_t
H5free_memory(void *mem)
{
FUNC_ENTER_API_NOINIT;
FUNC_ENTER_API_NOINIT
H5TRACE1("e", "*x", mem);
/* At this time, it is impossible for this to fail. */

View File

@ -638,14 +638,20 @@ done:
*
* Purpose: Query the size of the current list of plugin paths.
*
* Return: Non-negative or success.
* Return: Plugin path size (can't indicate failure due to unsigned type)
*
*-------------------------------------------------------------------------
*/
unsigned int
H5PLsize(void)
{
return (unsigned int)H5PL_num_paths_g;
unsigned int ret_value = (unsigned int)H5PL_num_paths_g;
FUNC_ENTER_API(0)
H5TRACE0("Iu","");
done:
FUNC_LEAVE_API(ret_value)
} /* end H5PLsize() */

View File

@ -4379,19 +4379,7 @@ H5P_facc_mdc_log_location_close(const char H5_ATTR_UNUSED *name, size_t H5_ATTR_
*-------------------------------------------------------------------------
*/
herr_t
H5Pset_evict_on_close(
#if defined(H5_HAVE_PARALLEL) && !defined(H5_DEBUG_BUILD)
hid_t H5_ATTR_UNUSED fapl_id,
#else
hid_t fapl_id,
#endif /* H5_HAVE_PARALLEL and !H5_DEBUG_BUILD */
#ifdef H5_HAVE_PARALLEL
hbool_t H5_ATTR_UNUSED evict_on_close
#else
hbool_t evict_on_close
#endif /* H5_HAVE_PARALLEL */
)
H5Pset_evict_on_close(hid_t fapl_id, hbool_t evict_on_close)
{
H5P_genplist_t *plist; /* property list pointer */
herr_t ret_value = SUCCEED; /* return value */