We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7601e78 commit b138138Copy full SHA for b138138
opal/mca/btl/usnic/btl_usnic_util.c
@@ -34,6 +34,8 @@ void opal_btl_usnic_exit(opal_btl_usnic_module_t *module)
34
}
35
/* If we didn't find a PML error callback, just exit. */
36
if (NULL == module) {
37
+ fprintf(stderr, "*** The Open MPI usnic BTL is aborting the MPI job (via exit(3)).\n");
38
+ fflush(stderr);
39
exit(1);
40
41
@@ -47,7 +49,7 @@ void opal_btl_usnic_exit(opal_btl_usnic_module_t *module)
47
49
module->pml_error_callback(&module->super,
48
50
MCA_BTL_ERROR_FLAGS_FATAL,
51
(opal_proc_t*) opal_proc_local_get(),
- "usnic");
52
+ "The usnic BTL is aborting the MPI job (via PML error callback).");
53
54
55
/* If the PML error callback returns (or if there wasn't one),
0 commit comments