2007-07-20 21:36:11 +00:00
|
|
|
/*
|
2007-07-25 22:28:04 +00:00
|
|
|
* Copyright (c) 2004-2007 The Trustees of the University of Tennessee.
|
2007-07-20 21:36:11 +00:00
|
|
|
* All rights reserved.
|
|
|
|
* $COPYRIGHT$
|
|
|
|
*
|
|
|
|
* Additional copyrights may follow
|
|
|
|
*
|
|
|
|
* $HEADER$
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef PML_V_H_HAS_BEEN_INCLUDED
|
|
|
|
#define PML_V_H_HAS_BEEN_INCLUDED
|
|
|
|
|
|
|
|
#include "ompi_config.h"
|
|
|
|
#include "ompi/mca/pml/pml.h"
|
2007-12-07 08:21:25 +00:00
|
|
|
#include "ompi/request/request.h"
|
2007-07-27 23:11:00 +00:00
|
|
|
|
2007-12-12 19:13:23 +00:00
|
|
|
BEGIN_C_DECLS
|
2007-07-20 21:36:11 +00:00
|
|
|
|
|
|
|
struct mca_pml_v_t {
|
2008-06-09 20:38:44 +00:00
|
|
|
int output;
|
2007-12-07 08:21:25 +00:00
|
|
|
size_t host_pml_req_recv_size;
|
|
|
|
size_t host_pml_req_send_size;
|
2008-01-23 23:54:02 +00:00
|
|
|
mca_pml_base_component_t host_pml_component;
|
|
|
|
mca_pml_base_module_t host_pml;
|
2008-01-24 02:29:07 +00:00
|
|
|
ompi_request_fns_t host_request_fns;
|
2007-07-20 21:36:11 +00:00
|
|
|
};
|
|
|
|
typedef struct mca_pml_v_t mca_pml_v_t;
|
|
|
|
|
2008-06-06 17:43:57 +00:00
|
|
|
OMPI_MODULE_DECLSPEC extern mca_pml_v_t mca_pml_v;
|
2008-07-28 22:40:57 +00:00
|
|
|
OMPI_MODULE_DECLSPEC extern mca_pml_base_component_2_0_0_t mca_pml_v_component;
|
2007-07-20 21:36:11 +00:00
|
|
|
|
2007-12-12 19:13:23 +00:00
|
|
|
END_C_DECLS
|
2007-07-20 21:36:11 +00:00
|
|
|
|
|
|
|
#endif /* PML_V_H_HAS_BEEN_INCLUDED */
|