This source file includes following definitions.
- mca_btl_template_endpoint_construct
- mca_btl_template_endpoint_destruct
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20 #include "opal_config.h"
21 #include <sys/time.h>
22 #include <time.h>
23 #include "btl_template.h"
24 #include "btl_template_endpoint.h"
25 #include "btl_template_proc.h"
26 #include "btl_template_frag.h"
27
28
29
30
31
32
33
34 static void mca_btl_template_endpoint_construct(mca_btl_base_endpoint_t* endpoint)
35 {
36 endpoint->endpoint_btl = 0;
37 endpoint->endpoint_proc = 0;
38 }
39
40
41
42
43
44
45 static void mca_btl_template_endpoint_destruct(mca_btl_base_endpoint_t* endpoint)
46 {
47 }
48
49
50 OBJ_CLASS_INSTANCE(
51 mca_btl_template_endpoint_t,
52 opal_list_item_t,
53 mca_btl_template_endpoint_construct,
54 mca_btl_template_endpoint_destruct);
55