435e7d80e9
current implementation. This commit was SVN r16015.
23 строки
1.1 KiB
C
23 строки
1.1 KiB
C
#ifndef MCA_BTL_SM_FIFO_H
|
|
#define MCA_BTL_SM_FIFO_H
|
|
|
|
#include "btl_sm.h"
|
|
#include "btl_sm_endpoint.h"
|
|
|
|
#define MCA_BTL_SM_FIFO_WRITE(endpoint_peer, my_smp_rank,peer_smp_rank,hdr) \
|
|
do { \
|
|
ompi_fifo_t* fifo; \
|
|
fifo=&(mca_btl_sm_component.fifo[peer_smp_rank][my_smp_rank]); \
|
|
\
|
|
/* thread lock */ \
|
|
OPAL_THREAD_LOCK(&fifo->head_lock); \
|
|
/* post fragment */ \
|
|
while(ompi_fifo_write_to_head(hdr, fifo, \
|
|
mca_btl_sm_component.sm_mpool) != OMPI_SUCCESS) \
|
|
opal_progress(); \
|
|
MCA_BTL_SM_SIGNAL_PEER(endpoint_peer); \
|
|
OPAL_THREAD_UNLOCK(&fifo->head_lock); \
|
|
} while(0)
|
|
|
|
#endif
|