This source file includes following definitions.
- mca_mtl_psm2_endpoint_construct
- mca_mtl_psm2_endpoint_destruct
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22 #include "ompi_config.h"
23 #include <sys/time.h>
24 #include <time.h>
25 #include "ompi/types.h"
26 #include "mtl_psm2.h"
27 #include "mtl_psm2_types.h"
28 #include "mtl_psm2_endpoint.h"
29
30
31
32
33
34
35 static void mca_mtl_psm2_endpoint_construct(mca_mtl_psm2_endpoint_t* endpoint)
36 {
37 endpoint->mtl_psm2_module = NULL;
38 }
39
40
41
42
43
44
45 static void mca_mtl_psm2_endpoint_destruct(mca_mtl_psm2_endpoint_t* endpoint)
46 {
47 }
48
49
50 OBJ_CLASS_INSTANCE(
51 mca_mtl_psm2_endpoint_t,
52 opal_list_item_t,
53 mca_mtl_psm2_endpoint_construct,
54 mca_mtl_psm2_endpoint_destruct);