summaryrefslogtreecommitdiffstats
path: root/src/H5FDmpi.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/H5FDmpi.c')
-rw-r--r--src/H5FDmpi.c36
1 files changed, 18 insertions, 18 deletions
diff --git a/src/H5FDmpi.c b/src/H5FDmpi.c
index b7b7489..0835110 100644
--- a/src/H5FDmpi.c
+++ b/src/H5FDmpi.c
@@ -53,16 +53,16 @@ H5FD_mpi_get_rank(H5FD_t *file)
FUNC_ENTER_NOAPI(FAIL)
- HDassert(file);
+ assert(file);
cls = (const H5FD_class_t *)(file->cls);
- HDassert(cls);
- HDassert(cls->ctl); /* All MPI drivers must implement this */
+ assert(cls);
+ assert(cls->ctl); /* All MPI drivers must implement this */
/* Dispatch to driver */
if ((cls->ctl)(file, H5FD_CTL_GET_MPI_RANK_OPCODE, flags, NULL, &rank_ptr) < 0)
HGOTO_ERROR(H5E_VFL, H5E_CANTGET, FAIL, "driver get_rank request failed")
- HDassert(rank >= 0);
+ assert(rank >= 0);
ret_value = rank;
@@ -95,10 +95,10 @@ H5FD_mpi_get_size(H5FD_t *file)
FUNC_ENTER_NOAPI(FAIL)
- HDassert(file);
+ assert(file);
cls = (const H5FD_class_t *)(file->cls);
- HDassert(cls);
- HDassert(cls->ctl); /* All MPI drivers must implement this */
+ assert(cls);
+ assert(cls->ctl); /* All MPI drivers must implement this */
/* Dispatch to driver */
if ((cls->ctl)(file, H5FD_CTL_GET_MPI_SIZE_OPCODE, flags, NULL, &size_ptr) < 0)
@@ -138,10 +138,10 @@ H5FD_mpi_get_comm(H5FD_t *file)
FUNC_ENTER_NOAPI(MPI_COMM_NULL)
- HDassert(file);
+ assert(file);
cls = (const H5FD_class_t *)(file->cls);
- HDassert(cls);
- HDassert(cls->ctl); /* All MPI drivers must implement this */
+ assert(cls);
+ assert(cls->ctl); /* All MPI drivers must implement this */
/* Dispatch to driver */
if ((cls->ctl)(file, H5FD_CTL_GET_MPI_COMMUNICATOR_OPCODE, flags, NULL, &comm_ptr) < 0)
@@ -208,7 +208,7 @@ H5FD_mpi_haddr_to_MPIOff(haddr_t addr, MPI_Offset *mpi_off /*out*/)
FUNC_ENTER_NOAPI_NOINIT_NOERR
- HDassert(mpi_off);
+ assert(mpi_off);
/* Convert the HDF5 address into an MPI offset */
*mpi_off = (MPI_Offset)addr;
@@ -245,10 +245,10 @@ H5FD_mpi_get_file_sync_required(H5FD_t *file, hbool_t *file_sync_required)
FUNC_ENTER_NOAPI(FAIL)
- HDassert(file);
+ assert(file);
cls = (const H5FD_class_t *)(file->cls);
- HDassert(cls);
- HDassert(cls->ctl); /* All MPI drivers must implement this */
+ assert(cls);
+ assert(cls->ctl); /* All MPI drivers must implement this */
/* Dispatch to driver */
if ((cls->ctl)(file, H5FD_CTL_GET_MPI_FILE_SYNC_OPCODE, flags, NULL, file_sync_required_ptr) < 0)
@@ -294,8 +294,8 @@ H5FD_mpio_wait_for_left_neighbor(H5FD_t *_file)
FUNC_ENTER_NOAPI(FAIL)
- HDassert(file);
- HDassert(H5FD_MPIO == file->pub.driver_id);
+ assert(file);
+ assert(H5FD_MPIO == file->pub.driver_id);
/* Portably initialize MPI status variable */
HDmemset(&rcvstat, 0, sizeof(MPI_Status));
@@ -344,8 +344,8 @@ H5FD_mpio_signal_right_neighbor(H5FD_t *_file)
FUNC_ENTER_NOAPI(FAIL)
- HDassert(file);
- HDassert(H5FD_MPIO == file->pub.driver_id);
+ assert(file);
+ assert(H5FD_MPIO == file->pub.driver_id);
if (file->mpi_rank != (file->mpi_size - 1))
if (MPI_SUCCESS !=