Skip to content

Commit d1bf286

Browse files
committed
show_help: convert opal_show_[v]help back into a function
Commit a525e70 converted opal_show_[v]help into global function pointer variables that were re-assigned a few times during the lifecycle of an application. This allows calls top opal_show_[v]help() to emit error messages different ways at different times -- e.g., before various subsystems were initialized, after they were initialized, and after they were shutdown. Long ago, however, the show_help infrastructure was converted to use PMIx under the covers, and this switcharoo was no longer necessary. Specifically: show_help always just calls PMIx and PMIx does the Right Things during at different stages of the process lifecycle. This commit changes opal_show_[v]help back to be a regular function -- not a function pointer. Signed-off-by: Jeff Squyres <[email protected]>
1 parent a1ac81e commit d1bf286

File tree

2 files changed

+7
-17
lines changed

2 files changed

+7
-17
lines changed

opal/util/show_help.c

+3-11
Original file line numberDiff line numberDiff line change
@@ -53,10 +53,6 @@ static bool opal_help_want_aggregate = true;
5353
/*
5454
* Local functions
5555
*/
56-
static int opal_show_vhelp_internal(const char *filename, const char *topic, int want_error_header,
57-
va_list arglist);
58-
static int opal_show_help_internal(const char *filename, const char *topic, int want_error_header,
59-
...);
6056
static void opal_show_help_finalize(void);
6157

6258
typedef struct {
@@ -65,9 +61,6 @@ typedef struct {
6561
char *msg;
6662
} opal_log_info_t;
6763

68-
opal_show_help_fn_t opal_show_help = opal_show_help_internal;
69-
opal_show_vhelp_fn_t opal_show_vhelp = opal_show_vhelp_internal;
70-
7164
int opal_show_help_init(void)
7265
{
7366
opal_output_stream_t lds;
@@ -269,8 +262,8 @@ char *opal_show_help_string(const char *filename, const char *topic, int want_er
269262
return output;
270263
}
271264

272-
static int opal_show_vhelp_internal(const char *filename, const char *topic, int want_error_header,
273-
va_list arglist)
265+
int opal_show_vhelp(const char *filename, const char *topic, int want_error_header,
266+
va_list arglist)
274267
{
275268
char *output;
276269

@@ -285,8 +278,7 @@ static int opal_show_vhelp_internal(const char *filename, const char *topic, int
285278
return (NULL == output) ? OPAL_ERROR : OPAL_SUCCESS;
286279
}
287280

288-
static int opal_show_help_internal(const char *filename, const char *topic, int want_error_header,
289-
...)
281+
int opal_show_help(const char *filename, const char *topic, int want_error_header, ...)
290282
{
291283
va_list arglist;
292284
int rc;

opal/util/show_help.h

+4-6
Original file line numberDiff line numberDiff line change
@@ -128,17 +128,15 @@ OPAL_DECLSPEC int opal_show_help_init(void);
128128
* promotion to va_start() has undefined behavior (according to clang
129129
* warnings on MacOS High Sierra).
130130
*/
131-
typedef int (*opal_show_help_fn_t)(const char *filename, const char *topic, int want_error_header,
132-
...);
133-
OPAL_DECLSPEC extern opal_show_help_fn_t opal_show_help;
131+
OPAL_DECLSPEC int opal_show_help(const char *filename, const char *topic, int want_error_header,
132+
...);
134133

135134
/**
136135
* This function does the same thing as opal_show_help(), but accepts
137136
* a va_list form of varargs.
138137
*/
139-
typedef int (*opal_show_vhelp_fn_t)(const char *filename, const char *topic, int want_error_header,
140-
va_list ap);
141-
OPAL_DECLSPEC extern opal_show_vhelp_fn_t opal_show_vhelp;
138+
OPAL_DECLSPEC int opal_show_vhelp(const char *filename, const char *topic, int want_error_header,
139+
va_list ap);
142140

143141
/**
144142
* This function does the same thing as opal_show_help(), but returns

0 commit comments

Comments
 (0)