1 /*
2 * Copyright (c) 2004-2005 The Trustees of Indiana University and Indiana
3 * University Research and Technology
4 * Corporation. All rights reserved.
5 * Copyright (c) 2004-2005 The University of Tennessee and The University
6 * of Tennessee Research Foundation. All rights
7 * reserved.
8 * Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
9 * University of Stuttgart. All rights reserved.
10 * Copyright (c) 2004-2005 The Regents of the University of California.
11 * All rights reserved.
12 * $COPYRIGHT$
13 *
14 * Additional copyrights may follow
15 *
16 * $HEADER$
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 * Initialize state of the endpoint instance.
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 * Destroy a endpoint
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