From 206e9a011e3b71bab87dc2e96378ed5af2f3a955 Mon Sep 17 00:00:00 2001 From: Ralph Castain Date: Thu, 29 Oct 2015 12:33:02 -0700 Subject: [PATCH] Add a couple of missing translations to/from PMIx internal and OPAL error constants --- opal/mca/pmix/pmix1xx/pmix_pmix1.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/opal/mca/pmix/pmix1xx/pmix_pmix1.c b/opal/mca/pmix/pmix1xx/pmix_pmix1.c index 4bcee893b0..2c61220524 100644 --- a/opal/mca/pmix/pmix1xx/pmix_pmix1.c +++ b/opal/mca/pmix/pmix1xx/pmix_pmix1.c @@ -171,6 +171,8 @@ pmix_status_t pmix1_convert_opalrc(int rc) case OPAL_EXISTS: return PMIX_EXISTS; + case OPAL_ERR_SILENT: + return PMIX_ERR_SILENT; case OPAL_ERROR: return PMIX_ERROR; case OPAL_SUCCESS: @@ -254,6 +256,8 @@ int pmix1_convert_rc(pmix_status_t rc) case PMIX_EXISTS: return OPAL_EXISTS; + case PMIX_ERR_SILENT: + return OPAL_ERR_SILENT; case PMIX_ERROR: return OPAL_ERROR; case PMIX_SUCCESS: