From 3a0bf0d37d8c1a7e764cb9344393038a53ce17d1 Mon Sep 17 00:00:00 2001 From: Tim Woodall Date: Thu, 15 Sep 2005 14:06:03 +0000 Subject: [PATCH] Note that we CANNOT do the normal finalize in abort. We are aborting due to some abnormal condition, that will likely cause finalize to hang. This commit was SVN r7381. --- orte/runtime/orte_abort.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/orte/runtime/orte_abort.c b/orte/runtime/orte_abort.c index c53f05f888..a55f7ad9d0 100644 --- a/orte/runtime/orte_abort.c +++ b/orte/runtime/orte_abort.c @@ -40,8 +40,8 @@ int orte_abort(int status, char *fmt, ...) } va_end(arglist); - /* Shut down and exit */ - - orte_finalize(); + /* Exit - do NOT do normal finalize as this will very likely + * hang the process. We are aborting due to an abnormal condition + * that precludes normal cleanup */ exit(status); }