diff options
author | Robert Kim Yates <rkyates@llnl.gov> | 1998-12-07 23:13:05 (GMT) |
---|---|---|
committer | Robert Kim Yates <rkyates@llnl.gov> | 1998-12-07 23:13:05 (GMT) |
commit | bf250c6bb28b13f3a4f986a6eab52c5c70ee84b6 (patch) | |
tree | f0ca8e2b051e7655bab30c06a9398e742b212858 /src/H5Fprivate.h | |
parent | b58e9a6253c5b0a5beff9bd444f68cf64c2533e9 (diff) | |
download | hdf5-bf250c6bb28b13f3a4f986a6eab52c5c70ee84b6.zip hdf5-bf250c6bb28b13f3a4f986a6eab52c5c70ee84b6.tar.gz hdf5-bf250c6bb28b13f3a4f986a6eab52c5c70ee84b6.tar.bz2 |
[svn-r960] Added interprocess coordination in H5F_istore_allocate around calls to
H5F_istore_lock and H5F_istore_inlock to prevent race between reading and
writing data chunks that caused "holes" (i.e., sequences of 0s)
in chunked datasets.
Diffstat (limited to 'src/H5Fprivate.h')
-rw-r--r-- | src/H5Fprivate.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/H5Fprivate.h b/src/H5Fprivate.h index 6b5f0df..3014d1c 100644 --- a/src/H5Fprivate.h +++ b/src/H5Fprivate.h @@ -654,6 +654,8 @@ herr_t H5F_addr_pack(H5F_t *f, haddr_t *addr, const long objno[2]); /* Functions for MPI-IO */ #ifdef HAVE_PARALLEL htri_t H5F_mpio_tas_allsame(H5F_low_t *lf, hbool_t newval ); +herr_t H5PC_Wait_for_left_neighbor( MPI_Comm comm ); +herr_t H5PC_Signal_right_neighbor( MPI_Comm comm ); #endif /* HAVE_PARALLEL */ #endif |