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