diff options
author | Robb Matzke <matzke@llnl.gov> | 1999-04-15 19:57:50 (GMT) |
---|---|---|
committer | Robb Matzke <matzke@llnl.gov> | 1999-04-15 19:57:50 (GMT) |
commit | 43c356f93dd4beb691abf8e5acb692438a5f8f00 (patch) | |
tree | 5c62c13f1c836def696b3bcc31b02df76aa7faea /src/H5Fcore.c | |
parent | 77d7a3328b044ae71a03bfc6aaac2af4d6eac923 (diff) | |
download | hdf5-43c356f93dd4beb691abf8e5acb692438a5f8f00.zip hdf5-43c356f93dd4beb691abf8e5acb692438a5f8f00.tar.gz hdf5-43c356f93dd4beb691abf8e5acb692438a5f8f00.tar.bz2 |
[svn-r1184] Changes since 19990402
----------------------
./config/commence.in
./config/conclude.in
./test/Makefile.in
./tools/Makefile.in
Fixed so private libraries are not installed publicly.
The installation directories `bin', `include', and `lib' are
created mode 755.
./src/H5.c
./src/H5A.c
./src/H5F.c
./src/H5Fcore.c
./src/H5Fistore.c
./src/H5Flow.c
./src/H5Fmpio.c
./src/H5Fsec2.c
./src/H5Fstdio.c
./src/H5G.c
./src/H5Gent.c
./src/H5Gnode.c
./src/H5HG.c
./src/H5HL.c
./src/H5O.c
./src/H5Oattr.c
./src/H5Ocomp.c
./src/H5Ocont.c
./src/H5Odtype.c
./src/H5Oefl.c
./src/H5Ofill.c
./src/H5Olayout.c
./src/H5Omtime.c
./src/H5Oname.c
./src/H5Osdspace.c
./src/H5Oshared.c
./src/H5Ostab.c
./src/H5R.c
./src/H5Sall.c
./src/H5Shyper.c
./src/H5Smpio.c
./src/H5Snone.c
./src/H5Spoint.c
./src/H5T.c
./src/H5Tconv.c
./src/H5Vprivate.h
./src/H5Z.c
./src/H5detect.c
./src/H5private.h
./test/chunk.c
./test/dsets.c
./test/dtypes.c
./test/h5test.c
./test/overhead.c
./test/ragged.c
./test/tattr.c
./tools/h5dump.c
./tools/h5findshd.c
./tools/h5ls.c
Changed `__unused__' to `UNUSED' to fix a conflict with GNU
header files.
./src/H5Tpkg.h
./test/h5test.h
Removed __unused__ from forward function declarations.
./src/H5P.c
Removed a comment about restrictions for the type conversion
temporary buffers. Thanks to Quincey, the comment no longer
applied.
./src/H5T.c
Relaxed the H5Tpack() a little so it would pack compound data
structures that had non-transient atomic members.
./tools/h5ls.c
Added a `-g' (or `--group') flag that causes information to be
printed about the specified group instead of the group's
contents. (sort of like Unix's `ls -d'). The `-g' can be used
in combination with `-r' to print information about the group
and its contents.
Diffstat (limited to 'src/H5Fcore.c')
-rw-r--r-- | src/H5Fcore.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/H5Fcore.c b/src/H5Fcore.c index b4f0cd3..f50429a 100644 --- a/src/H5Fcore.c +++ b/src/H5Fcore.c @@ -70,9 +70,9 @@ const H5F_low_class_t H5F_LOW_CORE_g[1] = {{ *------------------------------------------------------------------------- */ static htri_t -H5F_core_access(const char __unused__*name, - const H5F_access_t __unused__ *access_parms, - int __unused__ mode, H5F_search_t __unused__ *key/*out*/) +H5F_core_access(const char UNUSED*name, + const H5F_access_t UNUSED *access_parms, + int UNUSED mode, H5F_search_t UNUSED *key/*out*/) { FUNC_ENTER(H5F_core_access, FAIL); FUNC_LEAVE(FALSE); @@ -101,8 +101,8 @@ H5F_core_access(const char __unused__*name, *------------------------------------------------------------------------- */ static H5F_low_t * -H5F_core_open(const char __unused__ *name, - const H5F_access_t __unused__ *access_parms, +H5F_core_open(const char UNUSED *name, + const H5F_access_t UNUSED *access_parms, uintn flags, H5F_search_t *key/*out*/) { H5F_low_t *lf = NULL; @@ -150,7 +150,7 @@ H5F_core_open(const char __unused__ *name, *------------------------------------------------------------------------- */ static herr_t -H5F_core_close(H5F_low_t *lf, const H5F_access_t __unused__ *access_parms) +H5F_core_close(H5F_low_t *lf, const H5F_access_t UNUSED *access_parms) { FUNC_ENTER(H5F_core_close, FAIL); @@ -183,8 +183,8 @@ H5F_core_close(H5F_low_t *lf, const H5F_access_t __unused__ *access_parms) *------------------------------------------------------------------------- */ static herr_t -H5F_core_read(H5F_low_t *lf, const H5F_access_t __unused__ *access_parms, - const H5D_transfer_t __unused__ xfer_mode, +H5F_core_read(H5F_low_t *lf, const H5F_access_t UNUSED *access_parms, + const H5D_transfer_t UNUSED xfer_mode, const haddr_t *addr, size_t size, uint8_t *buf) { size_t n; @@ -232,7 +232,7 @@ H5F_core_read(H5F_low_t *lf, const H5F_access_t __unused__ *access_parms, */ static herr_t H5F_core_write(H5F_low_t *lf, const H5F_access_t *access_parms, - const H5D_transfer_t __unused__ xfer_mode, + const H5D_transfer_t UNUSED xfer_mode, const haddr_t *addr, size_t size, const uint8_t *buf) { size_t need_more, na; |