2006-01-28 18:38:37 +03:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2004-2005 The Trustees of Indiana University.
|
|
|
|
* All rights reserved.
|
|
|
|
* Copyright (c) 2004-2005 The Trustees of the University of Tennessee.
|
|
|
|
* All rights reserved.
|
|
|
|
* Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
|
|
|
|
* University of Stuttgart. All rights reserved.
|
|
|
|
* Copyright (c) 2004-2005 The Regents of the University of California.
|
|
|
|
* All rights reserved.
|
|
|
|
* $COPYRIGHT$
|
|
|
|
*
|
|
|
|
* Additional copyrights may follow
|
|
|
|
*
|
|
|
|
* $HEADER$
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef OSC_PT2PT_LONGREQ_H
|
|
|
|
#define OSC_PT2PT_LONGREQ_H
|
|
|
|
|
2011-07-01 00:05:16 +04:00
|
|
|
#include "opal/class/opal_free_list.h"
|
|
|
|
|
2006-01-28 18:38:37 +03:00
|
|
|
#include "osc_pt2pt.h"
|
|
|
|
|
|
|
|
struct ompi_osc_pt2pt_longreq_t {
|
2011-07-01 00:05:16 +04:00
|
|
|
opal_free_list_item_t super;
|
|
|
|
|
|
|
|
struct ompi_request_t *req_pml_request; /* PML request */
|
2006-01-28 18:38:37 +03:00
|
|
|
|
2011-07-01 00:05:16 +04:00
|
|
|
union {
|
|
|
|
struct ompi_osc_pt2pt_sendreq_t *req_sendreq;
|
|
|
|
struct ompi_osc_pt2pt_replyreq_t *req_replyreq;
|
|
|
|
struct ompi_osc_pt2pt_send_header_t *req_sendhdr;
|
|
|
|
} req_basereq;
|
2006-01-28 18:38:37 +03:00
|
|
|
|
2011-07-01 00:05:16 +04:00
|
|
|
/* This may not always be filled in... */
|
|
|
|
struct ompi_osc_pt2pt_module_t *req_module;
|
2006-01-28 18:38:37 +03:00
|
|
|
struct ompi_op_t *req_op;
|
|
|
|
struct ompi_datatype_t *req_datatype;
|
|
|
|
};
|
2007-05-21 06:21:25 +04:00
|
|
|
typedef struct ompi_osc_pt2pt_longreq_t ompi_osc_pt2pt_longreq_t;
|
2006-01-28 18:38:37 +03:00
|
|
|
OBJ_CLASS_DECLARATION(ompi_osc_pt2pt_longreq_t);
|
|
|
|
|
|
|
|
static inline int
|
|
|
|
ompi_osc_pt2pt_longreq_alloc(ompi_osc_pt2pt_longreq_t **longreq)
|
|
|
|
{
|
2006-07-18 01:51:50 +04:00
|
|
|
opal_free_list_item_t *item;
|
2006-01-28 18:38:37 +03:00
|
|
|
int ret;
|
|
|
|
|
|
|
|
OPAL_FREE_LIST_GET(&mca_osc_pt2pt_component.p2p_c_longreqs,
|
|
|
|
item, ret);
|
|
|
|
|
|
|
|
*longreq = (ompi_osc_pt2pt_longreq_t*) item;
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline int
|
|
|
|
ompi_osc_pt2pt_longreq_free(ompi_osc_pt2pt_longreq_t *longreq)
|
|
|
|
{
|
|
|
|
OPAL_FREE_LIST_RETURN(&mca_osc_pt2pt_component.p2p_c_longreqs,
|
2011-07-01 00:05:16 +04:00
|
|
|
&longreq->super);
|
2006-01-28 18:38:37 +03:00
|
|
|
return OMPI_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|