221fb9dbca
- Delete unnecessary header files using contrib/check_unnecessary_headers.sh after applying patches, that include headers, being "lost" due to inclusion in one of the now deleted headers... In total 817 files are touched. In ompi/mpi/c/ header files are moved up into the actual c-file, where necessary (these are the only additional #include), otherwise it is only deletions of #include (apart from the above additions required due to notifier...) - To get different MCAs (OpenIB, TM, ALPS), an earlier version was successfully compiled (yesterday) on: Linux locally using intel-11, gcc-4.3.2 and gcc-SVN + warnings enabled Smoky cluster (x86-64 running Linux) using PGI-8.0.2 + warnings enabled Lens cluster (x86-64 running Linux) using Pathscale-3.2 + warnings enabled This commit was SVN r21096.
71 строка
2.0 KiB
C
71 строка
2.0 KiB
C
/*
|
|
* 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 (c) 2007 Los Alamos National Security, LLC. All rights
|
|
* reserved.
|
|
* $COPYRIGHT$
|
|
*
|
|
* Additional copyrights may follow
|
|
*
|
|
* $HEADER$
|
|
*/
|
|
|
|
#ifndef OSC_RDMA_LONGREQ_H
|
|
#define OSC_RDMA_LONGREQ_H
|
|
|
|
#include "osc_rdma.h"
|
|
|
|
#include "opal/class/opal_free_list.h"
|
|
#include "ompi/datatype/datatype.h"
|
|
#include "ompi/request/request.h"
|
|
#include "ompi/op/op.h"
|
|
|
|
struct ompi_osc_rdma_longreq_t;
|
|
typedef struct ompi_osc_rdma_longreq_t ompi_osc_rdma_longreq_t;
|
|
|
|
typedef void (*ompi_osc_rdma_longreq_cb_fn_t)(ompi_osc_rdma_longreq_t *longreq);
|
|
|
|
struct ompi_osc_rdma_longreq_t {
|
|
opal_free_list_item_t super;
|
|
ompi_request_t *request;
|
|
ompi_osc_rdma_longreq_cb_fn_t cbfunc;
|
|
void *cbdata;
|
|
|
|
/* warning - this doesn't always have a sane value */
|
|
ompi_osc_rdma_module_t *req_module;
|
|
|
|
/* for long receives, to avoid a longrecvreq type */
|
|
struct ompi_op_t *req_op;
|
|
struct ompi_datatype_t *req_datatype;
|
|
};
|
|
OBJ_CLASS_DECLARATION(ompi_osc_rdma_longreq_t);
|
|
|
|
static inline int
|
|
ompi_osc_rdma_longreq_alloc(ompi_osc_rdma_longreq_t **longreq)
|
|
{
|
|
opal_free_list_item_t *item;
|
|
int ret;
|
|
|
|
OPAL_FREE_LIST_GET(&mca_osc_rdma_component.c_longreqs,
|
|
item, ret);
|
|
|
|
*longreq = (ompi_osc_rdma_longreq_t*) item;
|
|
return ret;
|
|
}
|
|
|
|
static inline int
|
|
ompi_osc_rdma_longreq_free(ompi_osc_rdma_longreq_t *longreq)
|
|
{
|
|
OPAL_FREE_LIST_RETURN(&mca_osc_rdma_component.c_longreqs,
|
|
&longreq->super.super);
|
|
return OMPI_SUCCESS;
|
|
}
|
|
|
|
#endif
|