1
1

add help file to explain why things went south..

This commit was SVN r10209.
Этот коммит содержится в:
Galen Shipman 2006-06-05 21:23:45 +00:00
родитель 07fb4b8012
Коммит f05dee0435
2 изменённых файлов: 7 добавлений и 0 удалений

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

@ -22,6 +22,8 @@
AM_CPPFLAGS=$(btl_openib_CPPFLAGS)
dist_pkgdata_DATA=help-mpi-btl-openib.txt
sources = \
btl_openib.c \
btl_openib.h \

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

@ -23,6 +23,7 @@
#include "opal/util/if.h"
#include "opal/util/argv.h"
#include "opal/util/output.h"
#include "opal/util/show_help.h"
#include "ompi/proc/proc.h"
#include "ompi/mca/pml/pml.h"
#include "ompi/mca/btl/btl.h"
@ -876,6 +877,10 @@ int mca_btl_openib_component_progress()
BTL_PEER_ERROR(remote_proc, ("error polling HP CQ with status %s status number %d for wr_id %llu opcode %d\n",
mca_btl_openib_component_status_to_string(wc.status),
wc.status, wc.wr_id, wc.opcode));
if(wc.status == IBV_WC_RETRY_EXC_ERR) {
opal_show_help("help-mpi-btl-openib.txt", "btl_openib:retry-exceeded", true);
}
return OMPI_ERROR;
}