summaryrefslogtreecommitdiffstats
path: root/src/H5Fmpio.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>1998-10-26 22:44:13 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>1998-10-26 22:44:13 (GMT)
commit7dcbae97f23f8409ed8d60640b3b2a8aaed70978 (patch)
tree54ba54ec5cdcda9651d63a4471a9a9ec2204e767 /src/H5Fmpio.c
parenta7b166727dce2c23c2a0c7805c3e3b8d38e4be2d (diff)
downloadhdf5-7dcbae97f23f8409ed8d60640b3b2a8aaed70978.zip
hdf5-7dcbae97f23f8409ed8d60640b3b2a8aaed70978.tar.gz
hdf5-7dcbae97f23f8409ed8d60640b3b2a8aaed70978.tar.bz2
[svn-r800] Made a "htri_t" as a return value from "boolean" functions returning
TRUE/FALSE/FAIL, hbool_t is now strictly for true boolean values.
Diffstat (limited to 'src/H5Fmpio.c')
-rw-r--r--src/H5Fmpio.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/H5Fmpio.c b/src/H5Fmpio.c
index b47188c..55080dc 100644
--- a/src/H5Fmpio.c
+++ b/src/H5Fmpio.c
@@ -99,7 +99,7 @@ static int H5F_mpio_Debug[256] =
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 };
#endif
-static hbool_t H5F_mpio_access(const char *name,
+static htri_t H5F_mpio_access(const char *name,
const H5F_access_t *access_parms, int mode,
H5F_search_t *key/*out*/);
static H5F_low_t *H5F_mpio_open(const char *name,
@@ -109,7 +109,7 @@ static herr_t H5F_mpio_close(H5F_low_t *lf, const H5F_access_t *access_parms);
static herr_t H5F_mpio_read(H5F_low_t *lf, H5F_access_t *access_parms,
const H5D_transfer_t xfer_mode,
const haddr_t *addr, size_t size, uint8 *buf/*out*/);
-hbool_t H5F_mpio_tas_allsame(H5F_low_t *lf, hbool_t newval );
+htri_t H5F_mpio_tas_allsame(H5F_low_t *lf, hbool_t newval );
static herr_t H5F_mpio_write(H5F_low_t *lf, H5F_access_t *access_parms,
const H5D_transfer_t xfer_mode,
const haddr_t *addr, size_t size, const uint8 *buf);
@@ -195,11 +195,11 @@ ino_t mpio_inode_num = 0; /* fake "inode" number */
*
*-------------------------------------------------------------------------
*/
-static hbool_t
+static htri_t
H5F_mpio_access(const char *name, const H5F_access_t *access_parms, int mode,
H5F_search_t *key/*out*/)
{
- hbool_t ret_val = FALSE;
+ htri_t ret_val = FALSE;
MPI_File fh;
int mpierr;
int mpi_mode;
@@ -649,7 +649,7 @@ H5F_mpio_read(H5F_low_t *lf, H5F_access_t *access_parms,
*
*-------------------------------------------------------------------------
*/
-hbool_t
+htri_t
H5F_mpio_tas_allsame(H5F_low_t *lf, hbool_t newval )
{
hbool_t oldval;