diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2010-07-20 18:49:06 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2010-07-20 18:49:06 (GMT) |
commit | 06763537dabab2043d7df4cf05ed21f7d01977c0 (patch) | |
tree | 76b079d694e68a99ec2ed94e08a8d17e5f3ee02c /src/H5Cpkg.h | |
parent | 037c318770490c07f23e30af26353b68dbf712c0 (diff) | |
download | hdf5-06763537dabab2043d7df4cf05ed21f7d01977c0.zip hdf5-06763537dabab2043d7df4cf05ed21f7d01977c0.tar.gz hdf5-06763537dabab2043d7df4cf05ed21f7d01977c0.tar.bz2 |
[svn-r19112] Description:
Rename H5AC_set() to H5AC_insert_entry()
Get rid of H5C_set_skip_flags() & related flags
Tested on:
Eyeballed only, very simple...
Diffstat (limited to 'src/H5Cpkg.h')
-rw-r--r-- | src/H5Cpkg.h | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/src/H5Cpkg.h b/src/H5Cpkg.h index a000a69..b8e6072 100644 --- a/src/H5Cpkg.h +++ b/src/H5Cpkg.h @@ -1357,25 +1357,6 @@ typedef struct H5C_mdjsc_record_t * * Fields supporting testing: * - * For test purposes, it is useful to turn off some asserts and sanity - * checks. The following flags support this. - * - * skip_file_checks: Boolean flag used to skip sanity checks on file - * parameters passed to the cache. In the test bed, there - * is no reason to have a file open, as the cache proper - * just passes these parameters through without using them. - * - * When this flag is set, all sanity checks on the file - * parameters are skipped. The field defaults to FALSE. - * - * skip_dxpl_id_checks: Boolean flag used to skip sanity checks on the - * dxpl_id parameters passed to the cache. These are not - * used directly by the cache, so skipping the checks - * simplifies the test bed. - * - * When this flag is set, all sanity checks on the dxpl_id - * parameters are skipped. The field defaults to FALSE. - * * prefix Array of char used to prefix debugging output. The * field is intended to allow marking of output of with * the processes mpi rank. @@ -1555,8 +1536,6 @@ struct H5C_t #endif /* H5C_COLLECT_CACHE_STATS */ - hbool_t skip_file_checks; - hbool_t skip_dxpl_id_checks; char prefix[H5C__PREFIX_LEN]; }; |