1
1

Fixing malformed error message

This commit was SVN r26434.
Этот коммит содержится в:
Yevgeny Kliteynik 2012-05-12 21:13:42 +00:00
родитель 1826b513ee
Коммит d59b8d5dc4
2 изменённых файлов: 3 добавлений и 3 удалений

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

@ -607,9 +607,9 @@ static int openib_reg_mr(void *reg_data, void *base, size_t size,
if (NULL == openib_reg->mr) {
orte_show_help("help-mpi-btl-openib.txt", "mem-reg-fail",
orte_process_info.nodename,
true, orte_process_info.nodename,
ibv_get_device_name(device->ib_dev),
__func__, strerror(errno));
__func__, strerror(errno), errno);
return OMPI_ERR_OUT_OF_RESOURCE;
}

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

@ -670,7 +670,7 @@ The failure occured here:
Local host: %s
Device: %s
Function: %s()
Errno says: %s
Errno says: %s (errno=%d)
You may need to consult with your system administrator to get this
problem fixed.