1
1

Nothing important, mainly replacing tabs with spaces.

This commit was SVN r19658.
Этот коммит содержится в:
George Bosilca 2008-09-30 18:30:35 +00:00
родитель 325d006577
Коммит b32e4e7f34
3 изменённых файлов: 11 добавлений и 15 удалений

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

@ -791,11 +791,10 @@ int mca_btl_sm_sendi( struct mca_btl_base_module_t* btl,
* @param btl (IN) BTL module * @param btl (IN) BTL module
* @param peer (IN) BTL peer addressing * @param peer (IN) BTL peer addressing
*/ */
int mca_btl_sm_send( int mca_btl_sm_send( struct mca_btl_base_module_t* btl,
struct mca_btl_base_module_t* btl, struct mca_btl_base_endpoint_t* endpoint,
struct mca_btl_base_endpoint_t* endpoint, struct mca_btl_base_descriptor_t* descriptor,
struct mca_btl_base_descriptor_t* descriptor, mca_btl_base_tag_t tag )
mca_btl_base_tag_t tag)
{ {
mca_btl_sm_frag_t* frag = (mca_btl_sm_frag_t*)descriptor; mca_btl_sm_frag_t* frag = (mca_btl_sm_frag_t*)descriptor;
int rc; int rc;

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

@ -56,12 +56,9 @@
#include "btl_sm_frag.h" #include "btl_sm_frag.h"
#include "btl_sm_fifo.h" #include "btl_sm_fifo.h"
/* /*
* Shared Memory (SM) component instance. * Shared Memory (SM) component instance.
*/ */
mca_btl_sm_component_t mca_btl_sm_component = { mca_btl_sm_component_t mca_btl_sm_component = {
{ /* super is being filled in */ { /* super is being filled in */
/* First, the mca_base_component_t struct containing meta information /* First, the mca_base_component_t struct containing meta information

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

@ -568,13 +568,13 @@ int mca_pml_ob1_send_request_start_copy( mca_pml_ob1_send_request_t* sendreq,
return OMPI_SUCCESS; return OMPI_SUCCESS;
} }
switch(rc) { switch(rc) {
case OMPI_ERR_RESOURCE_BUSY: case OMPI_ERR_RESOURCE_BUSY:
/* don't signal request completion; will be completed in wait() */ /* No more resources. Allow the upper level to queue the send */
rc = OMPI_SUCCESS; rc = OMPI_ERR_OUT_OF_RESOURCE;
break; break;
default: default:
mca_bml_base_free(bml_btl, des); mca_bml_base_free(bml_btl, des);
break; break;
} }
return rc; return rc;
} }