1
1

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.
Этот коммит содержится в:
Tim Woodall 2005-09-15 14:06:03 +00:00
родитель cbfb062a7d
Коммит 3a0bf0d37d

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

@ -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);
}