From c8e34813b6fae1abd27686698f7318e50bb5ea21 Mon Sep 17 00:00:00 2001 From: Ralph Castain Date: Mon, 24 Dec 2012 18:42:19 +0000 Subject: [PATCH] THIS IS A TEMPORARY FIX - do not finalize opal as the parameter system has been broken and will segfault when finalized. THIS PATCH MUST BE REMOVED WHEN THE PARAMETER SYSTEM HAS BEEN FIXED. This commit was SVN r27720. --- orte/runtime/orte_finalize.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/orte/runtime/orte_finalize.c b/orte/runtime/orte_finalize.c index b9a39ff98e..107e15a48b 100644 --- a/orte/runtime/orte_finalize.c +++ b/orte/runtime/orte_finalize.c @@ -103,8 +103,10 @@ int orte_finalize(void) /* Close the general debug stream */ opal_output_close(orte_debug_output); +#if 0 /* finalize the opal utilities */ opal_finalize(); +#endif return ORTE_SUCCESS; }