diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2002-05-29 15:07:55 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2002-05-29 15:07:55 (GMT) |
commit | e69e970a1c71621c39a5f5fa656a185948ed1df8 (patch) | |
tree | 6d62761aa80d47e1713786bdeadabed02cc3c8f0 /src/H5Olayout.c | |
parent | 0ba943194ec2c8b74bbfd6531ee7a9b110803974 (diff) | |
download | hdf5-e69e970a1c71621c39a5f5fa656a185948ed1df8.zip hdf5-e69e970a1c71621c39a5f5fa656a185948ed1df8.tar.gz hdf5-e69e970a1c71621c39a5f5fa656a185948ed1df8.tar.bz2 |
[svn-r5471] Purpose:
Code cleanup
Description:
Broke the FUNC_ENTER macro into several macros, with more specialized
uses (which followup mail will describe). This was designed to move
most/all of the checks which could be done at compile time to that point,
instead of needlessly performing them (over & over :-) at run-time.
This reduces the library's size (and thus staticly linked binaries) and
has a minor speedup effect also.
Platforms tested:
IRIX64 6.5 (modi4) with parallel & FORTRAN enabled, and additional testing
on FreeBSD and Solaris immediately after the checkin.
Diffstat (limited to 'src/H5Olayout.c')
-rw-r--r-- | src/H5Olayout.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/H5Olayout.c b/src/H5Olayout.c index a4d3fa0..b1b4680 100644 --- a/src/H5Olayout.c +++ b/src/H5Olayout.c @@ -83,7 +83,7 @@ H5O_layout_decode(H5F_t *f, const uint8_t *p, H5O_shared_t UNUSED *sh) int version; unsigned u; - FUNC_ENTER(H5O_layout_decode, NULL); + FUNC_ENTER_NOAPI(H5O_layout_decode, NULL); /* check args */ assert(f); @@ -155,7 +155,7 @@ H5O_layout_encode(H5F_t *f, uint8_t *p, const void *_mesg) const H5O_layout_t *mesg = (const H5O_layout_t *) _mesg; unsigned u; - FUNC_ENTER(H5O_layout_encode, FAIL); + FUNC_ENTER_NOAPI(H5O_layout_encode, FAIL); /* check args */ assert(f); @@ -216,7 +216,7 @@ H5O_layout_copy(const void *_mesg, void *_dest) const H5O_layout_t *mesg = (const H5O_layout_t *) _mesg; H5O_layout_t *dest = (H5O_layout_t *) _dest; - FUNC_ENTER(H5O_layout_copy, NULL); + FUNC_ENTER_NOAPI(H5O_layout_copy, NULL); /* check args */ assert(mesg); @@ -255,7 +255,7 @@ H5O_layout_size(H5F_t *f, const void *_mesg) const H5O_layout_t *mesg = (const H5O_layout_t *) _mesg; size_t ret_value = 0; - FUNC_ENTER(H5O_layout_size, 0); + FUNC_ENTER_NOAPI(H5O_layout_size, 0); /* check args */ assert(f); @@ -289,7 +289,7 @@ H5O_layout_size(H5F_t *f, const void *_mesg) static herr_t H5O_layout_free (void *mesg) { - FUNC_ENTER (H5O_layout_free, FAIL); + FUNC_ENTER_NOAPI(H5O_layout_free, FAIL); assert (mesg); @@ -320,7 +320,7 @@ H5O_layout_debug(H5F_t UNUSED *f, const void *_mesg, FILE * stream, const H5O_layout_t *mesg = (const H5O_layout_t *) _mesg; unsigned u; - FUNC_ENTER(H5O_layout_debug, FAIL); + FUNC_ENTER_NOAPI(H5O_layout_debug, FAIL); /* check args */ assert(f); |