Skip to content

Commit 837619e

Browse files
committed
SQUASHME: Replace opal_show_help instead of fprintf
Signed-off-by: Joseph Schuchart <[email protected]>
1 parent 662f566 commit 837619e

File tree

2 files changed

+18
-1
lines changed

2 files changed

+18
-1
lines changed

ompi/mpiext/continue/c/continuation.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -355,7 +355,8 @@ int ompi_continuation_fini(void)
355355
}
356356

357357
if (!opal_list_is_empty(&continuation_list)) {
358-
fprintf(stderr, "WARN: Incomplete continuations found in during shutdown, go fix your application!\n");
358+
opal_show_help("help-mpi-continue.txt", "continue:incomplete_shutdown",
359+
(int)opal_list_get_size(&continuation_list));
359360
}
360361
OBJ_DESTRUCT(&continuation_list);
361362

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# -*- text -*-
2+
#
3+
# Copyright (c) 2021 The University of Tennessee and The University
4+
# of Tennessee Research Foundation. All rights
5+
# reserved.
6+
# $COPYRIGHT$
7+
#
8+
# Additional copyrights may follow
9+
#
10+
# $HEADER$
11+
#
12+
# This is the US/English general help file for the OMPI Continuations extension.
13+
#
14+
[continue:incomplete_shutdown]
15+
WARNING: Found %d incomplete continuations found in during shutdown!
16+
#

0 commit comments

Comments
 (0)