From afd6524b59a94b87e07ad9b9b6b99b876b75175f Mon Sep 17 00:00:00 2001 From: Ralph Castain Date: Thu, 19 Aug 2004 15:35:46 +0000 Subject: [PATCH] Update constants file to include new OMPI_EXISTS code to indicate that an object already exists. Used in GPR - soon to be used elsewhere as well. This commit was SVN r2227. --- src/include/constants.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/include/constants.h b/src/include/constants.h index b8e2aaac14..687c119909 100644 --- a/src/include/constants.h +++ b/src/include/constants.h @@ -25,7 +25,8 @@ enum { OMPI_ERR_UNREACH = -15, OMPI_ERR_NOT_FOUND = -16, OMPI_ERR_BUFFER = -17, /* equivalent to MPI_ERR_BUFFER */ - OMPI_ERR_REQUEST = -18 /* equivalent to MPI_ERR_REQUEST */ + OMPI_ERR_REQUEST = -18, /* equivalent to MPI_ERR_REQUEST */ + OMPI_EXISTS = -19 /* indicates that the specified object already exists */ }; #endif /* OMPI_CONSTANTS_H */