From 24396e54a43067d747cdd64fb8fa75353d32d460 Mon Sep 17 00:00:00 2001 From: Tim Woodall Date: Fri, 9 Jan 2004 19:21:43 +0000 Subject: [PATCH] - defined base request - removed p2p specifics from mpi datatypes This commit was SVN r182. --- src/include/mpi.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/include/mpi.h b/src/include/mpi.h index 96c6f38e85..a533fa987e 100644 --- a/src/include/mpi.h +++ b/src/include/mpi.h @@ -12,9 +12,9 @@ #define LAM_MPI 1 -typedef struct lam_communicator *MPI_Comm; -typedef struct lam_group *MPI_Group; -typedef struct lam_datatype *MPI_Datatype; +typedef struct lam_communicator_t *MPI_Comm; +typedef struct lam_group_t *MPI_Group; +typedef struct lam_datatype_t *MPI_Datatype; extern MPI_Comm MPI_COMM_NULL; extern MPI_Comm MPI_COMM_WORLD;