1
1

Fix two mistakes in the README. Thanks to 3rd party reviewers!

This commit was SVN r23019.
Этот коммит содержится в:
Jeff Squyres 2010-04-22 15:35:00 +00:00
родитель 359464a144
Коммит 668c1c7f17

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

@ -1172,7 +1172,7 @@ Open MPI API Extensions
Open MPI contains a framework for extending the MPI API that is Open MPI contains a framework for extending the MPI API that is
available to applications. Each extension is usually a standalone set of available to applications. Each extension is usually a standalone set of
functionality that is distinct from other extensions (similar to how functionality that is distinct from other extensions (similar to how
Open MPI's plugins are usually unrelated to wach other). These Open MPI's plugins are usually unrelated to each other). These
extensions provide new functions and/or constants that are available extensions provide new functions and/or constants that are available
to MPI applications. to MPI applications.
@ -1201,7 +1201,9 @@ include a separate header file after <mpi.h> to obtain the function
prototypes, constant declarations, etc. For example: prototypes, constant declarations, etc. For example:
#include <mpi.h> #include <mpi.h>
#if defined(OPEN_MPI) && OPEN_MPI
#include <mpi-ext.h> #include <mpi-ext.h>
#endif
int main() { int main() {
MPI_Init(NULL, NULL); MPI_Init(NULL, NULL);