diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2009-07-02 15:57:54 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2009-07-02 15:57:54 (GMT) |
commit | c4fc0074ae04fc2d0b9b0b92a6a214af612e8194 (patch) | |
tree | aade7ea92bdb4b37f8e1061007560e56b95e6829 /src/H5EAtest.c | |
parent | 8e14272cdb356c619fa286e0420dbc14a36c2eda (diff) | |
download | hdf5-c4fc0074ae04fc2d0b9b0b92a6a214af612e8194.zip hdf5-c4fc0074ae04fc2d0b9b0b92a6a214af612e8194.tar.gz hdf5-c4fc0074ae04fc2d0b9b0b92a6a214af612e8194.tar.bz2 |
[svn-r17140] Description:
Migrate "new style" func enter macros (BEGIN_FUNC/THROW/CATCH/END_FUNC) into
common header files, so that other packages can use them.
Tested on:
FreeBSD/32 6.3 (duty) in debug mode
FreeBSD/64 6.3 (liberty) w/C++ & FORTRAN, in debug mode
Linux/32 2.6 (jam) w/PGI compilers, w/C++ & FORTRAN, w/threadsafe,
in debug mode
Linux/64-amd64 2.6 (smirom) w/Intel compilers w/default API=1.6.x,
w/C++ & FORTRAN, in production mode
Solaris/32 2.10 (linew) w/deprecated symbols disabled, w/C++ & FORTRAN,
w/szip filter, in production mode
Linux/64-ia64 2.6 (cobalt) w/Intel compilers, w/C++ & FORTRAN,
in production mode
Linux/64-ia64 2.4 (tg-login3) w/parallel, w/FORTRAN, in debug mode
Linux/64-amd64 2.6 (abe) w/parallel, w/FORTRAN, in production mode
Mac OS X/32 10.5.7 (amazon) in debug mode
Mac OS X/32 10.5.7 (amazon) w/C++ & FORTRAN, w/threadsafe,
in production mode
Diffstat (limited to 'src/H5EAtest.c')
-rw-r--r-- | src/H5EAtest.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/H5EAtest.c b/src/H5EAtest.c index 12d14ae..58da489 100644 --- a/src/H5EAtest.c +++ b/src/H5EAtest.c @@ -245,7 +245,7 @@ H5EA__test_encode(void *raw, const void *_elmt, size_t nelmts, void *_ctx)) /* Encode native elements into raw elements */ while(nelmts) { /* Encode element */ - /* (advances 'raw' pointer */ + /* (advances 'raw' pointer) */ UINT64ENCODE(raw, *elmt); /* Advance native element pointer */ @@ -291,7 +291,7 @@ H5EA__test_decode(const void *_raw, void *_elmt, size_t nelmts, void *_ctx)) /* Decode raw elements into native elements */ while(nelmts) { /* Decode element */ - /* (advances 'raw' pointer */ + /* (advances 'raw' pointer) */ UINT64DECODE(raw, *elmt); /* Advance native element pointer */ |