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/H5Omtime.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/H5Omtime.c')
-rw-r--r-- | src/H5Omtime.c | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/src/H5Omtime.c b/src/H5Omtime.c index ff3eb5a..a43c47a 100644 --- a/src/H5Omtime.c +++ b/src/H5Omtime.c @@ -133,7 +133,7 @@ H5O_mtime_new_decode(H5F_t UNUSED *f, const uint8_t *p, ret_value=mesg; done: - FUNC_LEAVE(ret_value); + FUNC_LEAVE_NOAPI(ret_value); } /* end H5O_mtime_new_decode() */ @@ -261,7 +261,7 @@ H5O_mtime_decode(H5F_t UNUSED *f, const uint8_t *p, ret_value=mesg; done: - FUNC_LEAVE(ret_value); + FUNC_LEAVE_NOAPI(ret_value); } @@ -305,7 +305,7 @@ H5O_mtime_new_encode(H5F_t UNUSED *f, uint8_t *p, const void *_mesg) UINT32ENCODE(p, *mesg); done: - FUNC_LEAVE(ret_value); + FUNC_LEAVE_NOAPI(ret_value); } /* end H5O_mtime_new_encode() */ @@ -345,7 +345,7 @@ H5O_mtime_encode(H5F_t UNUSED *f, uint8_t *p, const void *_mesg) tm->tm_hour, tm->tm_min, tm->tm_sec); done: - FUNC_LEAVE(ret_value); + FUNC_LEAVE_NOAPI(ret_value); } @@ -388,7 +388,7 @@ H5O_mtime_copy(const void *_mesg, void *_dest) ret_value=dest; done: - FUNC_LEAVE(ret_value); + FUNC_LEAVE_NOAPI(ret_value); } @@ -424,7 +424,7 @@ H5O_mtime_new_size(H5F_t * UNUSED f, const void * UNUSED mesg) assert(mesg); done: - FUNC_LEAVE(ret_value); + FUNC_LEAVE_NOAPI(ret_value); } /* end H5O_mtime_new_size() */ @@ -460,7 +460,7 @@ H5O_mtime_size(H5F_t * UNUSED f, const void * UNUSED mesg) assert(mesg); done: - FUNC_LEAVE(ret_value); + FUNC_LEAVE_NOAPI(ret_value); } @@ -487,7 +487,7 @@ H5O_mtime_reset(void UNUSED *_mesg) FUNC_ENTER_NOAPI(H5O_mtime_reset, FAIL); done: - FUNC_LEAVE(ret_value); + FUNC_LEAVE_NOAPI(ret_value); } @@ -517,7 +517,7 @@ H5O_mtime_free (void *mesg) H5FL_FREE(time_t,mesg); done: - FUNC_LEAVE (ret_value); + FUNC_LEAVE_NOAPI(ret_value); } @@ -562,6 +562,6 @@ H5O_mtime_debug(H5F_t UNUSED *f, const void *_mesg, FILE *stream, "Time:", buf); done: - FUNC_LEAVE(ret_value); + FUNC_LEAVE_NOAPI(ret_value); } |