fixed problems with compiling on my Mac

This commit is contained in:
Marc Howison
2010-11-08 01:56:45 +00:00
parent 6dc020da64
commit 1dd75f48e6
3 changed files with 8 additions and 8 deletions
+2 -2
View File
@@ -45,7 +45,7 @@ _normalize_partition (
}
}
#if defined(PARALLEL)
#ifdef PARALLEL_IO
/* MLH: this could be improved with an MPI_Reduce and MAX operator...
* but the user_layout array-of-structs would need to be a struct-of-arrays */
static void
@@ -699,7 +699,7 @@ h5b_3d_get_chunk (
return H5_SUCCESS;
}
#if defined(PARALLEL_IO)
#ifdef PARALLEL_IO
h5_err_t
h5b_3d_set_grid (
h5_file_t *const f, /*!< IN: File handle */
+3 -3
View File
@@ -69,9 +69,9 @@ h5_err_t
H5Block3dGetGridCoords (
h5_file_t *const f, /*!< IN: File handle */
const int proc, /*!< IN: MPI processor */
h5_size_t *const i, /*!< OUT: index in \c i */
h5_size_t *const j, /*!< OUT: index in \c j */
h5_size_t *const k /*!< OUT: index in \c k */
h5_int64_t *const i, /*!< OUT: index in \c i */
h5_int64_t *const j, /*!< OUT: index in \c j */
h5_int64_t *const k /*!< OUT: index in \c k */
);
h5_err_t
+3 -3
View File
@@ -97,9 +97,9 @@ h5_err_t
h5b_3d_get_grid_coords (
h5_file_t *const f, /*!< IN: File handle */
const int proc, /*!< IN: MPI processor */
h5_size_t *const i, /*!< OUT: index in \c i */
h5_size_t *const j, /*!< OUT: index in \c j */
h5_size_t *const k /*!< OUT: index in \c k */
h5_int64_t *const i, /*!< OUT: index in \c i */
h5_int64_t *const j, /*!< OUT: index in \c j */
h5_int64_t *const k /*!< OUT: index in \c k */
);
h5_err_t