summaryrefslogtreecommitdiffstats
path: root/src/H5.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@koziol.gov>2020-06-16 17:30:08 (GMT)
committerQuincey Koziol <koziol@koziol.gov>2020-06-16 17:30:08 (GMT)
commit49fad72f3e003e1e2d7d72edd9b7ec47c802d9f1 (patch)
tree6633d9a787935af233d577d383d946763c31e36c /src/H5.c
parentd20000ec51d50b66fc1226eeb656b8dc1358f826 (diff)
downloadhdf5-49fad72f3e003e1e2d7d72edd9b7ec47c802d9f1.zip
hdf5-49fad72f3e003e1e2d7d72edd9b7ec47c802d9f1.tar.gz
hdf5-49fad72f3e003e1e2d7d72edd9b7ec47c802d9f1.tar.bz2
Reduce overhead for H5open, which is involved in the public symbols like H5T_NATIVE_INT, etc.
Diffstat (limited to 'src/H5.c')
-rw-r--r--src/H5.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/H5.c b/src/H5.c
index bd78ca2..31b8546 100644
--- a/src/H5.c
+++ b/src/H5.c
@@ -938,11 +938,13 @@ H5open(void)
{
herr_t ret_value=SUCCEED; /* Return value */
- FUNC_ENTER_API_NOCLEAR(FAIL)
- H5TRACE0("e","");
+ FUNC_ENTER_API_NOPUSH(FAIL)
+ /*NO TRACE*/
+
/* all work is done by FUNC_ENTER() */
+
done:
- FUNC_LEAVE_API(ret_value)
+ FUNC_LEAVE_API_NOPUSH(ret_value)
} /* end H5open() */