root/ompi/mca/mtl/ofi/mtl_ofi_endpoint.c

/* [<][>][^][v][top][bottom][index][help] */

DEFINITIONS

This source file includes following definitions.
  1. mca_mtl_ofi_endpoint_construct
  2. mca_mtl_ofi_endpoint_destruct

   1 /*
   2  * Copyright (c) 2013-2015 Intel, Inc. All rights reserved
   3  *
   4  * $COPYRIGHT$
   5  *
   6  * Additional copyrights may follow
   7  *
   8  * $HEADER$
   9  */
  10 
  11 #include "mtl_ofi.h"
  12 
  13 /**
  14  * Initialize state of the endpoint instance.
  15  */
  16 
  17 static void mca_mtl_ofi_endpoint_construct(mca_mtl_ofi_endpoint_t *endpoint)
  18 {
  19     endpoint->mtl_ofi_module = NULL;
  20 }
  21 
  22 /**
  23  * Destroy an endpoint
  24  */
  25 static void mca_mtl_ofi_endpoint_destruct(mca_mtl_ofi_endpoint_t *endpoint)
  26 {
  27 }
  28 
  29 
  30 OBJ_CLASS_INSTANCE(
  31     mca_mtl_ofi_endpoint_t,
  32     opal_list_item_t,
  33     mca_mtl_ofi_endpoint_construct,
  34     mca_mtl_ofi_endpoint_destruct
  35 );

/* [<][>][^][v][top][bottom][index][help] */