Skip to content

Commit 96775ef

Browse files
committed
errhandler_predefined.c: help the show_help audit script
Since we have a variadic opal_show_help() topic, put some special strings in comments that help the show_help checker script know that these topics are actually used. Signed-off-by: Jeff Squyres <jsquyres@cisco.com>
1 parent 50aa22a commit 96775ef

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

ompi/errhandler/errhandler_predefined.c

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
* Copyright (c) 2004-2005 The Regents of the University of California.
1111
* All rights reserved.
1212
* Copyright (c) 2006 University of Houston. All rights reserved.
13-
* Copyright (c) 2008-2018 Cisco Systems, Inc. All rights reserved
13+
* Copyright (c) 2008-2022 Cisco Systems, Inc. All rights reserved.
1414
* Copyright (c) 2009 Sun Microsystems, Inc. All rights reserved.
1515
* Copyright (c) 2010-2011 Oak Ridge National Labs. All rights reserved.
1616
* Copyright (c) 2012 Los Alamos National Security, LLC.
@@ -283,6 +283,9 @@ static void backend_abort_aggregate(int fatal, char *type,
283283
usable_err_msg = (NULL == err_msg) ? unknown_error : err_msg;
284284

285285
if (NULL != name) {
286+
// For the show_help topic checker script
287+
// SHOW_HELP:"help-mpi-errors.txt","mpi_errors_are_fatal"
288+
// SHOW_HELP:"help-mpi-errors.txt","mpi_errors_abort"
286289
opal_show_help("help-mpi-errors.txt",
287290
fatal? "mpi_errors_are_fatal": "mpi_errors_abort",
288291
false,

0 commit comments

Comments
 (0)