summaryrefslogtreecommitdiffstats
path: root/src/H5Fpublic.h
diff options
context:
space:
mode:
authorAlbert Cheng <acheng@hdfgroup.org>1998-02-06 03:00:35 (GMT)
committerAlbert Cheng <acheng@hdfgroup.org>1998-02-06 03:00:35 (GMT)
commit238cccd5e8657fe9800eb6caad98b6c54b1c251d (patch)
tree2f4cfa92dc384cc5c7ff4b041a09e46936de1738 /src/H5Fpublic.h
parent858b8fbfaedd5800f2c716f381618a978b89d1a0 (diff)
downloadhdf5-238cccd5e8657fe9800eb6caad98b6c54b1c251d.zip
hdf5-238cccd5e8657fe9800eb6caad98b6c54b1c251d.tar.gz
hdf5-238cccd5e8657fe9800eb6caad98b6c54b1c251d.tar.bz2
[svn-r224] Initial implementation of the upper levels of PHDF5. The
MPIO lower interface layer (H5Fmpio.c) has been commited by Kim already. All PHDF5 codes are "bracket'ed" by #ifdef HAVE_PARALLEL macro.
Diffstat (limited to 'src/H5Fpublic.h')
-rw-r--r--src/H5Fpublic.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/H5Fpublic.h b/src/H5Fpublic.h
index 885277d..538b07b 100644
--- a/src/H5Fpublic.h
+++ b/src/H5Fpublic.h
@@ -24,6 +24,11 @@
#define H5ACC_DEFAULT 0x0000/*use in H5Fopen & H5Fcreate to open a file with default access*/
#define H5ACC_WRITE 0x0001/*use in H5Fopen to open a file with write access*/
#define H5ACC_OVERWRITE 0x0002/*use in H5Fcreate truncate an existing file*/
+#ifdef HAVE_PARALLEL
+#define H5ACC_INDEPENDENT 0x0010/*use in H5Cset_mpi for MPI independent access*/
+#define H5ACC_COLLECTIVE 0x0011/*use in H5Cset_mpi for MPI collective access*/
+#endif
+
#ifdef __cplusplus
extern "C" {