1
1
openmpi/src/include/mpi.h
Jeff Squyres b93da5b412 Remove $Id$
This commit was SVN r69.
2004-01-07 14:55:59 +00:00

26 строки
462 B
C

/*
* $HEADER$
*/
#ifndef LAM_MPI_H
#define LAM_MPI_H
#define MPI_SUCCESS 0
#define MPI_MAX_OBJECT_NAME 64
#define LAM_MPI 1
typedef struct _lam_communicator *MPI_Comm;
typedef struct _lam_group *MPI_Group;
typedef struct _lam_datatype *MPI_Datatype;
extern MPI_Comm MPI_COMM_NULL;
extern MPI_Comm MPI_COMM_WORLD;
extern MPI_Comm MPI_COMM_SELF;
extern MPI_Datatype MPI_TYPE_NULL;
int MPI_Comm_set_name(MPI_Comm comm, char *name);
#endif /* LAM_MPI_H */