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-2006 The Regents of the University of California.
11 * All rights reserved.
12 * Copyright (c) 2006 QLogic Corporation. All rights reserved.
13 * $COPYRIGHT$
14 *
15 * Additional copyrights may follow
16 *
17 * $HEADER$
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 * Initialize state of the endpoint instance.
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 * Destroy a endpoint
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