diff options
author | Dana Robinson <derobins@hdfgroup.org> | 2017-04-21 00:19:15 (GMT) |
---|---|---|
committer | Dana Robinson <derobins@hdfgroup.org> | 2017-04-21 00:19:15 (GMT) |
commit | 739f413b7803c1d8fb5d0cbaef6503785a18275c (patch) | |
tree | 2a2fafd93e137665633aed7ff0d30b6d93be0b9d /src/H5.c | |
parent | 5fefc12bd84843c295096330d5884dc0a1e043b0 (diff) | |
download | hdf5-739f413b7803c1d8fb5d0cbaef6503785a18275c.zip hdf5-739f413b7803c1d8fb5d0cbaef6503785a18275c.tar.gz hdf5-739f413b7803c1d8fb5d0cbaef6503785a18275c.tar.bz2 |
Fixed problems that prevent bin/trace from marking up some functions.
Diffstat (limited to 'src/H5.c')
-rw-r--r-- | src/H5.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -944,7 +944,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) @@ -985,7 +985,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); @@ -1009,7 +1009,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. */ |