summaryrefslogtreecommitdiffstats
path: root/src/H5FDmpio.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/H5FDmpio.c')
-rw-r--r--src/H5FDmpio.c22
1 files changed, 11 insertions, 11 deletions
diff --git a/src/H5FDmpio.c b/src/H5FDmpio.c
index 3ef4d09..ca0a2ea 100644
--- a/src/H5FDmpio.c
+++ b/src/H5FDmpio.c
@@ -73,10 +73,10 @@ typedef struct H5FD_mpio_t {
/* Callbacks */
static herr_t H5FD__mpio_term(void);
-static void * H5FD__mpio_fapl_get(H5FD_t *_file);
-static void * H5FD__mpio_fapl_copy(const void *_old_fa);
+static void *H5FD__mpio_fapl_get(H5FD_t *_file);
+static void *H5FD__mpio_fapl_copy(const void *_old_fa);
static herr_t H5FD__mpio_fapl_free(void *_fa);
-static H5FD_t * H5FD__mpio_open(const char *name, unsigned flags, hid_t fapl_id, haddr_t maxaddr);
+static H5FD_t *H5FD__mpio_open(const char *name, unsigned flags, hid_t fapl_id, haddr_t maxaddr);
static herr_t H5FD__mpio_close(H5FD_t *_file);
static herr_t H5FD__mpio_query(const H5FD_t *_f1, unsigned long *flags);
static haddr_t H5FD__mpio_get_eoa(const H5FD_t *_file, H5FD_mem_t type);
@@ -369,7 +369,7 @@ herr_t
H5Pset_fapl_mpio(hid_t fapl_id, MPI_Comm comm, MPI_Info info)
{
H5FD_mpio_fapl_t fa;
- H5P_genplist_t * plist; /* Property list pointer */
+ H5P_genplist_t *plist; /* Property list pointer */
herr_t ret_value;
FUNC_ENTER_API(FAIL)
@@ -420,7 +420,7 @@ done:
herr_t
H5Pget_fapl_mpio(hid_t fapl_id, MPI_Comm *comm /*out*/, MPI_Info *info /*out*/)
{
- H5P_genplist_t * plist; /* Property list pointer */
+ H5P_genplist_t *plist; /* Property list pointer */
const H5FD_mpio_fapl_t *fa; /* MPIO fapl info */
MPI_Comm comm_tmp = MPI_COMM_NULL;
hbool_t comm_copied = FALSE; /* MPI Comm has been duplicated */
@@ -737,9 +737,9 @@ done:
static void *
H5FD__mpio_fapl_get(H5FD_t *_file)
{
- H5FD_mpio_t * file = (H5FD_mpio_t *)_file;
+ H5FD_mpio_t *file = (H5FD_mpio_t *)_file;
H5FD_mpio_fapl_t *fa = NULL;
- void * ret_value = NULL; /* Return value */
+ void *ret_value = NULL; /* Return value */
FUNC_ENTER_NOAPI_NOINIT
@@ -777,9 +777,9 @@ done:
static void *
H5FD__mpio_fapl_copy(const void *_old_fa)
{
- void * ret_value = NULL;
+ void *ret_value = NULL;
const H5FD_mpio_fapl_t *old_fa = (const H5FD_mpio_fapl_t *)_old_fa;
- H5FD_mpio_fapl_t * new_fa = NULL;
+ H5FD_mpio_fapl_t *new_fa = NULL;
#ifdef H5FDmpio_DEBUG
hbool_t H5FD_mpio_debug_t_flag = H5FD_mpio_debug_flags_s[(int)'t'];
#endif
@@ -970,8 +970,8 @@ H5FD__mpio_open(const char *name, unsigned flags, hid_t fapl_id, haddr_t H5_ATTR
{
const H5FD_mpio_fapl_t *fa = NULL;
H5FD_mpio_fapl_t _fa;
- H5FD_mpio_t * file = NULL; /* VFD File struct for new file */
- H5P_genplist_t * plist; /* Property list pointer */
+ H5FD_mpio_t *file = NULL; /* VFD File struct for new file */
+ H5P_genplist_t *plist; /* Property list pointer */
MPI_Comm comm = MPI_COMM_NULL; /* MPI Communicator, from plist */
MPI_Info info = MPI_INFO_NULL; /* MPI Info, from plist */
MPI_File fh; /* MPI file handle */