1
1

- Get rid of inline definition, otherwise static-compilation fails.

This commit was SVN r12735.
Этот коммит содержится в:
Rainer Keller 2006-12-03 14:52:17 +00:00
родитель e61dd8722e
Коммит 6f8f28f40f
2 изменённых файлов: 2 добавлений и 2 удалений

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

@ -69,7 +69,7 @@ static mca_pml_dr_recv_frag_t* mca_pml_dr_recv_request_match_specific_proc(
mca_pml_dr_recv_request_t* request, mca_pml_dr_comm_proc_t* proc); mca_pml_dr_recv_request_t* request, mca_pml_dr_comm_proc_t* proc);
static inline int mca_pml_dr_recv_request_free(struct ompi_request_t** request) static int mca_pml_dr_recv_request_free(struct ompi_request_t** request)
{ {
mca_pml_dr_recv_request_t* recvreq = *(mca_pml_dr_recv_request_t**)request; mca_pml_dr_recv_request_t* recvreq = *(mca_pml_dr_recv_request_t**)request;
assert( false == recvreq->req_recv.req_base.req_free_called ); assert( false == recvreq->req_recv.req_base.req_free_called );

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

@ -40,7 +40,7 @@
* for others p2p communications. Therefore, in the case of the DR PML it should * for others p2p communications. Therefore, in the case of the DR PML it should
* be added to the free request list. * be added to the free request list.
*/ */
static inline int mca_pml_dr_send_request_free(struct ompi_request_t** request) static int mca_pml_dr_send_request_free(struct ompi_request_t** request)
{ {
mca_pml_dr_send_request_t* sendreq = *(mca_pml_dr_send_request_t**)request; mca_pml_dr_send_request_t* sendreq = *(mca_pml_dr_send_request_t**)request;