This source file includes following definitions.
- mca_mtl_ofi_endpoint_construct
- mca_mtl_ofi_endpoint_destruct
1
2
3
4
5
6
7
8
9
10
11 #include "mtl_ofi.h"
12
13
14
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
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 );