summaryrefslogtreecommitdiffstats
path: root/src/H5Cprivate.h
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2015-06-29 15:19:34 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2015-06-29 15:19:34 (GMT)
commit89115b11b0ed2f51c6d80305301a60c7cba8c916 (patch)
tree114c6377c5cfd835d9abf86b62e143c9fb4dd79b /src/H5Cprivate.h
parent8e94745298c2ceacf80b21f0d16e887217527916 (diff)
downloadhdf5-89115b11b0ed2f51c6d80305301a60c7cba8c916.zip
hdf5-89115b11b0ed2f51c6d80305301a60c7cba8c916.tar.gz
hdf5-89115b11b0ed2f51c6d80305301a60c7cba8c916.tar.bz2
[svn-r27294] Description:
Clean up parameters to H5C__flush_single_entry: accept cache entry instead of address, and make new flag for deleting entry from skiplist on destroy instead of a separate parameter to the routine. Tested on: MacOSX/64 10.10.3 (amazon) w/serial & parallel Linux/32 2.6.x (jam) w/serial & parallel
Diffstat (limited to 'src/H5Cprivate.h')
-rw-r--r--src/H5Cprivate.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/H5Cprivate.h b/src/H5Cprivate.h
index 2dc611d..57cbc2d 100644
--- a/src/H5Cprivate.h
+++ b/src/H5Cprivate.h
@@ -236,6 +236,7 @@
* H5C__FLUSH_CLEAR_ONLY_FLAG
* H5C__FLUSH_MARKED_ENTRIES_FLAG
* H5C__TAKE_OWNERSHIP_FLAG
+ * H5C__DEL_FROM_SLIST_ON_DESTROY_FLAG
*/
#define H5C__NO_FLAGS_SET 0x0000
#define H5C__SET_FLUSH_MARKER_FLAG 0x0001
@@ -252,6 +253,7 @@
#define H5C__TAKE_OWNERSHIP_FLAG 0x1000
#define H5C__FLUSH_LAST_FLAG 0x2000
#define H5C__FLUSH_COLLECTIVELY_FLAG 0x4000
+#define H5C__DEL_FROM_SLIST_ON_DESTROY_FLAG 0x8000
/****************************/