1
1

Print out a message telling the user how to enable non-aggregated help

/ error messages.

This commit was SVN r19604.
Этот коммит содержится в:
Jeff Squyres 2008-09-22 17:42:56 +00:00
родитель d6696c46a6
Коммит e0a991a8c2

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

@ -200,11 +200,17 @@ static void show_accumulated_duplicates(int fd, short event, void *context)
item = opal_list_get_next(item)) {
tli = (tuple_list_item_t*) item;
if (tli->tli_count_since_last_display > 0) {
static bool first = true;
opal_output(0, "%d more process%s sent help message %s / %s",
tli->tli_count_since_last_display,
(tli->tli_count_since_last_display > 1) ? "es have" : " has",
tli->tli_filename, tli->tli_topic);
tli->tli_count_since_last_display = 0;
if (first) {
opal_output(0, "Set MCA parameter \"orte_base_help_aggregate\" to 0 to see all help / error messages");
first = false;
}
}
}