diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2006-05-02 03:17:49 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2006-05-02 03:17:49 (GMT) |
commit | c6e532afb936a4a7cd8d2cb97029e55cd5b9e435 (patch) | |
tree | 8956e938a9157070d75e2f29f8f5ce8602b60ac3 /src/H5private.h | |
parent | 714d90171466c84dfafad771b0b26a87a4b4ebff (diff) | |
download | hdf5-c6e532afb936a4a7cd8d2cb97029e55cd5b9e435.zip hdf5-c6e532afb936a4a7cd8d2cb97029e55cd5b9e435.tar.gz hdf5-c6e532afb936a4a7cd8d2cb97029e55cd5b9e435.tar.bz2 |
[svn-r12320] Purpose:
code cleanup
Description:
Finish H5FS->H5CS internal API name changes...
Platforms tested:
FreeBSD 4.11 (sleipnir) w/ & w/o --enable-codestack
Diffstat (limited to 'src/H5private.h')
-rw-r--r-- | src/H5private.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/H5private.h b/src/H5private.h index 98793a8..df96165 100644 --- a/src/H5private.h +++ b/src/H5private.h @@ -1161,17 +1161,17 @@ extern hbool_t H5_libinit_g; /* Has the library been initialized? */ #endif /* H5_HAVE_THREADSAFE */ -#ifdef H5_HAVE_FUNCSTACK +#ifdef H5_HAVE_CODESTACK /* Include required function stack header */ -#include "H5FSprivate.h" +#include "H5CSprivate.h" -#define H5_PUSH_FUNC(func_name) H5FS_push(#func_name) -#define H5_POP_FUNC H5FS_pop() -#else /* H5_HAVE_FUNCSTACK */ +#define H5_PUSH_FUNC(func_name) H5CS_push(#func_name) +#define H5_POP_FUNC H5CS_pop() +#else /* H5_HAVE_CODESTACK */ #define H5_PUSH_FUNC(func_name) /* void */ #define H5_POP_FUNC /* void */ -#endif /* H5_HAVE_FUNCSTACK */ +#endif /* H5_HAVE_CODESTACK */ #ifdef H5_HAVE_MPE extern hbool_t H5_MPEinit_g; /* Has the MPE Library been initialized? */ @@ -1340,7 +1340,7 @@ static herr_t H5_INTERFACE_INIT_FUNC(void); /* * Use this macro for non-API functions which fall into these categories: * - functions which shouldn't push their name on the function stack - * (so far, just the H5FS routines themselves) + * (so far, just the H5CS routines themselves) * * This macro is used for functions which fit the above categories _and_ * also don't use the 'FUNC' variable (i.e. don't push errors on the error stack) @@ -1422,7 +1422,7 @@ static herr_t H5_INTERFACE_INIT_FUNC(void); /* * Use this macro for non-API functions which fall into these categories: * - functions which didn't push their name on the function stack - * (so far, just the H5FS routines themselves) + * (so far, just the H5CS routines themselves) */ #define FUNC_LEAVE_NOAPI_NOFS(ret_value) \ return (ret_value); \ |