diff options
author | Dana Robinson <derobins@hdfgroup.org> | 2015-05-02 06:17:28 (GMT) |
---|---|---|
committer | Dana Robinson <derobins@hdfgroup.org> | 2015-05-02 06:17:28 (GMT) |
commit | 7d86677dd611adefa12e3229c6494230d4059845 (patch) | |
tree | de2d0e11140c75c7b247b3b2ac76881ec9cfaf95 /src/H5Fpublic.h | |
parent | 6306c72a0642bb4631e6358ad812f968e56c7a8f (diff) | |
download | hdf5-7d86677dd611adefa12e3229c6494230d4059845.zip hdf5-7d86677dd611adefa12e3229c6494230d4059845.tar.gz hdf5-7d86677dd611adefa12e3229c6494230d4059845.tar.bz2 |
[svn-r26994] Merge of r26986 from trunk.
Removes H5F_ACC_DEBUG and H5FD_DEBUG functionality.
The H5F_ACC_DEBUG symbol remains but has been defined to zero.
Fixes: HDFFV-1074
Tested on:
h5committest
32-bit Linux w/ C++ and Fortran and multi VFD
Diffstat (limited to 'src/H5Fpublic.h')
-rw-r--r-- | src/H5Fpublic.h | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/src/H5Fpublic.h b/src/H5Fpublic.h index 8466a26..5f74523 100644 --- a/src/H5Fpublic.h +++ b/src/H5Fpublic.h @@ -41,13 +41,15 @@ * We're assuming that these constants are used rather early in the hdf5 * session. * + * H5F_ACC_DEBUG no longer has any prints any special debug info. The symbol is + * being retained and will be listed as deprecated in HDF5 1.10.0. */ -#define H5F_ACC_RDONLY (H5CHECK 0x0000u) /*absence of rdwr => rd-only */ -#define H5F_ACC_RDWR (H5CHECK 0x0001u) /*open for read and write */ -#define H5F_ACC_TRUNC (H5CHECK 0x0002u) /*overwrite existing files */ -#define H5F_ACC_EXCL (H5CHECK 0x0004u) /*fail if file already exists*/ -#define H5F_ACC_DEBUG (H5CHECK 0x0008u) /*print debug info */ -#define H5F_ACC_CREAT (H5CHECK 0x0010u) /*create non-existing files */ +#define H5F_ACC_RDONLY (H5CHECK 0x0000u) /*absence of rdwr => rd-only */ +#define H5F_ACC_RDWR (H5CHECK 0x0001u) /*open for read and write */ +#define H5F_ACC_TRUNC (H5CHECK 0x0002u) /*overwrite existing files */ +#define H5F_ACC_EXCL (H5CHECK 0x0004u) /*fail if file already exists */ +#define H5F_ACC_DEBUG (H5CHECK 0x0000u) /*print debug info (no longer used) */ +#define H5F_ACC_CREAT (H5CHECK 0x0010u) /*create non-existing files */ /* Value passed to H5Pset_elink_acc_flags to cause flags to be taken from the * parent file. */ |