diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2003-01-10 20:26:02 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2003-01-10 20:26:02 (GMT) |
commit | f8da76cb9f96d4b233ac9dcb896f9df74e803f38 (patch) | |
tree | b23e28d99b9391163e25d84daabb09906998078f /src/H5Oefl.c | |
parent | 71ca572047b5d73b200eb761bc1234f3b6c4783d (diff) | |
download | hdf5-f8da76cb9f96d4b233ac9dcb896f9df74e803f38.zip hdf5-f8da76cb9f96d4b233ac9dcb896f9df74e803f38.tar.gz hdf5-f8da76cb9f96d4b233ac9dcb896f9df74e803f38.tar.bz2 |
[svn-r6266] Purpose:
Code cleanup/new feature.
Description:
Split FUNC_LEAVE into API and non-API specific versions. This allows a
solution to compiling this branch with C++, as well as reducing the size
of the binaries produced.
Platforms tested:
FreeBSD 4.7 (sleipnir) w/serial, parallel (including MPE) & thread-safe
Diffstat (limited to 'src/H5Oefl.c')
-rw-r--r-- | src/H5Oefl.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/H5Oefl.c b/src/H5Oefl.c index c81002b..38b2dfb 100644 --- a/src/H5Oefl.c +++ b/src/H5Oefl.c @@ -134,7 +134,7 @@ done: if(mesg!=NULL) H5MM_xfree (mesg); } /* end if */ - FUNC_LEAVE(ret_value); + FUNC_LEAVE_NOAPI(ret_value); } @@ -204,7 +204,7 @@ H5O_efl_encode(H5F_t *f, uint8_t *p, const void *_mesg) } done: - FUNC_LEAVE(ret_value); + FUNC_LEAVE_NOAPI(ret_value); } @@ -261,7 +261,7 @@ H5O_efl_copy(const void *_mesg, void *_dest) ret_value=dest; done: - FUNC_LEAVE(ret_value); + FUNC_LEAVE_NOAPI(ret_value); } @@ -305,7 +305,7 @@ H5O_efl_size(H5F_t *f, const void *_mesg) H5F_SIZEOF_SIZE(f)); /*file size */ done: - FUNC_LEAVE(ret_value); + FUNC_LEAVE_NOAPI(ret_value); } @@ -345,7 +345,7 @@ H5O_efl_reset(void *_mesg) mesg->slot = H5MM_xfree(mesg->slot); done: - FUNC_LEAVE(ret_value); + FUNC_LEAVE_NOAPI(ret_value); } @@ -386,7 +386,7 @@ H5O_efl_total_size (H5O_efl_t *efl) } done: - FUNC_LEAVE (ret_value); + FUNC_LEAVE_NOAPI(ret_value); } @@ -474,7 +474,7 @@ done: if (fd>=0) HDclose (fd); - FUNC_LEAVE (ret_value); + FUNC_LEAVE_NOAPI(ret_value); } @@ -563,7 +563,7 @@ done: if (fd>=0) HDclose (fd); - FUNC_LEAVE (ret_value); + FUNC_LEAVE_NOAPI(ret_value); } @@ -628,5 +628,5 @@ H5O_efl_debug(H5F_t UNUSED *f, const void *_mesg, FILE * stream, } done: - FUNC_LEAVE(ret_value); + FUNC_LEAVE_NOAPI(ret_value); } |