1
1
openmpi/ompi/mca/bml/base/bml_base_endpoint.c
Rainer Keller 9dea63d63a - Last of intrusive commits (promised)... err for now.
Anyway, this is blocking the move: do not include pml.h
   if not really needed, aka none of the following used:
     mca_pml
     MCA_PML_CALL
     OMPI_ANY_TAG
     OMPI_ANY_SOURCE
     OMPI_PROC_NULL

 - Notable exceptions (deleting in one header->adding):
   - ompi/mca/mtl/psm/
   - ompi/mca/osc/rdma/
   - ompi/mca/btl/openib/btl_openib_endpoint.c depended on
     pml_base_sendreq.h

 - Tested on Linux/x86-64, this time including make check
   (thanks Jeff and Ralph)

This commit was SVN r20725.
2009-03-04 17:06:51 +00:00

53 строки
1.5 KiB
C

/*
* Copyright (c) 2004-2005 The Trustees of Indiana University and Indiana
* University Research and Technology
* Corporation. All rights reserved.
* Copyright (c) 2004-2008 The University of Tennessee and The University
* of Tennessee Research Foundation. All rights
* reserved.
* Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
* University of Stuttgart. All rights reserved.
* Copyright (c) 2004-2006 The Regents of the University of California.
* All rights reserved.
* Copyright (c) 2008 Cisco Systems, Inc. All rights reserved.
* $COPYRIGHT$
*
* Additional copyrights may follow
*
* $HEADER$
*/
#include "ompi_config.h"
#include "opal/sys/atomic.h"
#include "ompi/mca/bml/bml.h"
static void mca_bml_base_endpoint_construct(mca_bml_base_endpoint_t* ep)
{
ep->btl_pipeline_send_length = 0;
ep->btl_send_limit = 0;
OBJ_CONSTRUCT(&ep->btl_eager, mca_bml_base_btl_array_t);
OBJ_CONSTRUCT(&ep->btl_send, mca_bml_base_btl_array_t);
OBJ_CONSTRUCT(&ep->btl_rdma, mca_bml_base_btl_array_t);
}
static void mca_bml_base_endpoint_destruct(mca_bml_base_endpoint_t* ep)
{
OBJ_DESTRUCT(&ep->btl_eager);
OBJ_DESTRUCT(&ep->btl_send);
OBJ_DESTRUCT(&ep->btl_rdma);
}
OBJ_CLASS_INSTANCE(
mca_bml_base_endpoint_t,
opal_object_t,
mca_bml_base_endpoint_construct,
mca_bml_base_endpoint_destruct
);