diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2010-05-06 00:50:20 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2010-05-06 00:50:20 (GMT) |
commit | 731916db3cb3f03f9d7f0dbca86988cae4bb50f5 (patch) | |
tree | 0cde8b5d4c55b4f07a5d2f3c5cc20784d8e3ce1a /test/cache_common.h | |
parent | cb772e9939a8dd4e447ad7f8e4cf2fdefb8f37db (diff) | |
download | hdf5-731916db3cb3f03f9d7f0dbca86988cae4bb50f5.zip hdf5-731916db3cb3f03f9d7f0dbca86988cae4bb50f5.tar.gz hdf5-731916db3cb3f03f9d7f0dbca86988cae4bb50f5.tar.bz2 |
[svn-r18718] Description:
Rename H5[A]C_mark_pinned_or_protected_entry_dirty() to
H5[A]C_mark_entry_dirty() and get rid of H5[A]C_mark_pinned_entry_dirty().
Tested on:
Linux/64-amd64 2.6 (abe) w/parallel, w/FORTRAN, in production mode
Mac OS X/32 10.6.3 (amazon) in debug mode
Mac OS X/32 10.6.3 (amazon) w/C++ & FORTRAN, w/threadsafe,
in production mode
Diffstat (limited to 'test/cache_common.h')
-rw-r--r-- | test/cache_common.h | 14 |
1 files changed, 4 insertions, 10 deletions
diff --git a/test/cache_common.h b/test/cache_common.h index f98323a..e748b60 100644 --- a/test/cache_common.h +++ b/test/cache_common.h @@ -170,13 +170,13 @@ typedef struct flush_op * FLUSH_OP__DIRTY: TRUE iff the * target is pinned, and is to * be dirtied via the - * H5C_mark_pinned_entry_dirty() + * H5C_mark_entry_dirty() * call. * * FLUSH_OP__RESIZE: TRUE iff the * target is pinned, and is to * be resized via the - * H5C_mark_pinned_entry_dirty() + * H5C_mark_entry_dirty() * call. * * FLUSH_OP__RENAME: TRUE iff the @@ -770,15 +770,9 @@ void insert_entry(H5F_t * file_ptr, hbool_t dirty, unsigned int flags); -void mark_pinned_entry_dirty(H5F_t * file_ptr, +void mark_entry_dirty(H5F_t * file_ptr, int32_t type, - int32_t idx, - hbool_t size_changed, - size_t new_size); - -void mark_pinned_or_protected_entry_dirty(H5F_t * file_ptr, - int32_t type, - int32_t idx); + int32_t idx); void rename_entry(H5C_t * cache_ptr, int32_t type, |