1
1

- Removed header, replaced with $HEADER$ (to be filled in later)

- use full relative pathnames for include files
- Other minor stylistic changes (per group agreement)
- s/bool_t/lam_bool_t/
- s/FALSE/LAM_FALSE/
- s/TRUE/LAM_TRUE/
- s/CMPI/LAM_MPI/ or s/CMPI/LAM/

This commit was SVN r37.
Этот коммит содержится в:
Jeff Squyres 2004-01-07 07:53:25 +00:00
родитель 6affec5874
Коммит 88087bf709

Просмотреть файл

@ -1,20 +1,17 @@
/*
* Copyright (c) 2003 The Trustees of Indiana University.
* All rights reserved.
* $HEADER$
*
* This file is part of the CMPI software package. For license
* information, see the LICENSE file in the top level directory of the
* CMPI source distribution.
*
* $Id: mpi.h,v 1.3 2003/12/22 16:29:12 twoodall Exp $
* $Id: mpi.h,v 1.4 2004/01/07 07:53:25 jsquyres Exp $
*/
#ifndef CMPI_H
#define CMPI_H
#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;
@ -26,4 +23,4 @@ extern MPI_Comm MPI_COMM_SELF;
extern MPI_Datatype MPI_TYPE_NULL;
#endif /* CMPI_H */
#endif /* LAM_MPI_H */