1
1

macro variable has same name as one of the parameters passed to the

macro.
Typo - most likely cut and paste error.

This commit was SVN r13918.
Этот коммит содержится в:
Rich Graham 2007-03-04 23:31:07 +00:00
родитель 5ae2fb5df1
Коммит e932d9a695

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

@ -68,7 +68,7 @@ OBJ_CLASS_DECLARATION(mca_btl_portals_frag_recv_t);
ompi_free_list_item_t *item; \
OMPI_FREE_LIST_GET(&((mca_btl_portals_module_t*)btl_macro)->portals_frag_eager, item, rc); \
if (rc == OMPI_ERR_TEMP_OUT_OF_RESOURCE) { \
OMPI_BTL_PORTALS_FRAG_ALLOC_MAX(btl_macro, frag, rc); \
OMPI_BTL_PORTALS_FRAG_ALLOC_MAX(btl_macro, item, rc); \
} \
frag = (mca_btl_portals_frag_t*) item; \
}
@ -85,9 +85,9 @@ OBJ_CLASS_DECLARATION(mca_btl_portals_frag_recv_t);
#define OMPI_BTL_PORTALS_FRAG_ALLOC_MAX(btl_macro, frag, rc) \
{ \
\
ompi_free_list_item_t *item; \
OMPI_FREE_LIST_WAIT(&((mca_btl_portals_module_t*)btl_macro)->portals_frag_max, item, rc); \
frag = (mca_btl_portals_frag_t*) item; \
ompi_free_list_item_t *item_macro; \
OMPI_FREE_LIST_WAIT(&((mca_btl_portals_module_t*)btl_macro)->portals_frag_max, item_macro, rc); \
frag = (mca_btl_portals_frag_t*) item_macro; \
}