summaryrefslogtreecommitdiffstats
path: root/src/H5Cprivate.h
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@lbl.gov>2016-11-25 22:07:23 (GMT)
committerQuincey Koziol <koziol@lbl.gov>2016-11-25 22:07:23 (GMT)
commit1071d8bf73bc9f069b9d939d882aa27e2334f94a (patch)
treeab2ad7c29fc31a6385a622226ac98b973be1ad7a /src/H5Cprivate.h
parentfff898558e3c828070abe81b4147bd959ed37ccb (diff)
downloadhdf5-1071d8bf73bc9f069b9d939d882aa27e2334f94a.zip
hdf5-1071d8bf73bc9f069b9d939d882aa27e2334f94a.tar.gz
hdf5-1071d8bf73bc9f069b9d939d882aa27e2334f94a.tar.bz2
Add a flag for H5C__flush_single_entry() to allow the parallel code to request
that images for entries be generated, even when not writing the entry from an MPI rank.
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 c03e2e7..923083f 100644
--- a/src/H5Cprivate.h
+++ b/src/H5Cprivate.h
@@ -183,6 +183,7 @@
* H5C__FLUSH_MARKED_ENTRIES_FLAG
* H5C__TAKE_OWNERSHIP_FLAG
* H5C__DEL_FROM_SLIST_ON_DESTROY_FLAG
+ * H5C__GENERATE_IMAGE_FLAG
*/
#define H5C__NO_FLAGS_SET 0x00000
#define H5C__SET_FLUSH_MARKER_FLAG 0x00001
@@ -202,6 +203,7 @@
#define H5C__EVICT_ALLOW_LAST_PINS_FLAG 0x04000
#define H5C__DEL_FROM_SLIST_ON_DESTROY_FLAG 0x08000
#define H5C__DURING_FLUSH_FLAG 0x10000 /* Set when the entire cache is being flushed */
+#define H5C__GENERATE_IMAGE_FLAG 0x20000 /* Set during parallel I/O */
/* Debugging/sanity checking/statistics settings */
#ifndef NDEBUG