This source file includes following definitions.
- mca_vprotocol_example_probe
- mca_vprotocol_example_iprobe
1
2
3
4
5
6
7
8
9
10
11 #include "ompi_config.h"
12 #include "../pml_v.h"
13 #include "vprotocol_example.h"
14
15 int mca_vprotocol_example_probe( int src, int tag,
16 struct ompi_communicator_t *comm,
17 ompi_status_public_t * status )
18 {
19 V_OUTPUT_VERBOSE(50, "mca_vprotocol_example_probe(%d, %d, %d)", src, tag, comm->c_contextid);
20 return mca_pml_v.host_pml.pml_probe(src, tag, comm, status);
21 }
22
23 int mca_vprotocol_example_iprobe( int src, int tag,
24 struct ompi_communicator_t *comm,
25 int *matched, ompi_status_public_t * status )
26 {
27 V_OUTPUT_VERBOSE(60, "mca_vprotocol_example_iprobe(%d, %d, %d)", src, tag, comm->c_contextid);
28 return mca_pml_v.host_pml.pml_iprobe(src, tag, comm, matched, status);
29 }